<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="0.91">
    <channel>
        <title>WebYep - Menu Styles</title>
        <description>The 10 most recently added comments in the topic &quot;WebYep - Menu Styles&quot;</description>
        <link>http://www.freewaytalk.net/</link>
        <lastBuildDate>Tue, 07 Sep 2010 07:45:32 -500</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Re: WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119#m_37142</link>
            <description>&lt;p&gt;Walter, yes, I could add it via CSS but I was hoping to avoid using a
graphic.&lt;/p&gt;

&lt;p&gt;chuckamuck, I&amp;#8217;ll have to look at the loop as I haven&amp;#8217;t investigated
what it does in depth yet.&lt;/p&gt;

&lt;p&gt;I know there are at least a couple ways around this minor problem,
none of them difficult, but I want to find the easiest method for the
client and so far the CSS approach is probably the best option.&lt;/p&gt;

&lt;p&gt;Thanks Guys.&lt;/p&gt;

&lt;p&gt;Todd&lt;/p&gt;

&lt;p&gt;On Jul 30, 2008, at 5:55 PM, chuckamuck wrote:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;If you were using a loop the bullets could be placed in Freeway
  between the WY fields and would get added, but I don&amp;#8217;t see how you
  can do the same with menu.&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;Add the bullet back in as a background image on the a, using the
    position right center to pop it over to the end, and right padding
    to force it out of the box.&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;That might just work Walt.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Todd</author>
            <pubDate>Thu, 31 Jul 2008 01:08:30 -500</pubDate>
        </item>
        <item>
            <title>Re: WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119#m_37133</link>
            <description>&lt;p&gt;If you were using a loop the bullets could be placed in Freeway between the WY fields and would get added, but I don&amp;#8217;t see how you can do the same with menu.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Add the bullet back in as a background image on the a, using the position right center to pop it over to the end, and right padding to force it out of the box.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That might just work Walt.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>chuckamuck</author>
            <pubDate>Wed, 30 Jul 2008 22:55:23 -500</pubDate>
        </item>
        <item>
            <title>Re: WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119#m_37126</link>
            <description>&lt;p&gt;Add the bullet back in as a background image on the a, using the
position right center to pop it over to the end, and right padding to
force it out of the box.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;li.mystyle a {
    background: url(icns/bullet_blue.png) no-repeat right center;
    padding-right: 16px;
}

li.mystyle {
    list-style-type: none;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Walter&lt;/p&gt;

&lt;p&gt;On Jul 30, 2008, at 2:47 PM, Todd wrote:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I should have been more clear, I did remove the list-style and the
  bullets are manually added back in after each link. What the WY
  menu action does is wrap everything on the same line in an &lt;a&gt; tag
  which is not what&amp;#8217;s needed.&lt;/p&gt;
  
  &lt;p&gt;So if I coded it manually it would look like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;ul.mylist&amp;gt;
   &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link1&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &amp;amp;bull;
   &amp;lt;li.mylist&amp;gt;Link2&amp;lt;/li&amp;gt; &amp;amp;bull;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
  
  &lt;p&gt;But what the action does is:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;&amp;lt;ul.mylist&amp;gt;
    &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link1 &amp;amp;bull;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
    &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link2 &amp;amp;bull;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
  
  &lt;p&gt;As far as I can tell it won&amp;#8217;t allow me to keep the bullet outside
  the &lt;a&gt; tag.&lt;/p&gt;
  
  &lt;p&gt;Todd&lt;/p&gt;
  
  &lt;p&gt;On Jul 30, 2008, at 1:37 PM, Walter Lee Davis wrote:&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;The only way I can think of to have the bullet be part of the link
    would be to suppress the regular bullet:&lt;/p&gt;
    
    &lt;p&gt;li.yourClass { list-style-type: none; }&lt;/p&gt;
    
    &lt;p&gt;&amp;#8230; and then manually add the bullets back in: &lt;code&gt;&amp;amp;bull;&lt;/code&gt; or Option-8
    on a US keyboard in regular Freeway text.&lt;/p&gt;
    
    &lt;p&gt;Otherwise, the bullet is expressly not a part of the LI&amp;#8217;s content,
    it&amp;#8217;s an outside &amp;#8220;marker&amp;#8221; to indicate where the LI starts.&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;hr /&gt;
  
  &lt;p&gt;offtopic mailing list
  email@hidden
  Update your subscriptions at:
  &lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>waltd</author>
            <pubDate>Wed, 30 Jul 2008 19:49:00 -500</pubDate>
        </item>
        <item>
            <title>Re: WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119#m_37123</link>
            <description>&lt;p&gt;I should have been more clear, I did remove the list-style and the
bullets are manually added back in after each link. What the WY menu
action does is wrap everything on the same line in an &lt;a&gt; tag which
is not what&amp;#8217;s needed.&lt;/p&gt;

&lt;p&gt;So if I coded it manually it would look like this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; &amp;lt;ul.mylist&amp;gt;
    &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link1&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt; &amp;amp;bull;
    &amp;lt;li.mylist&amp;gt;Link2&amp;lt;/li&amp;gt; &amp;amp;bull;
 &amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But what the action does is:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; &amp;lt;ul.mylist&amp;gt;
     &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link1 &amp;amp;bull;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
     &amp;lt;li.mylist&amp;gt;&amp;lt;a&amp;gt;Link2 &amp;amp;bull;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
 &amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;As far as I can tell it won&amp;#8217;t allow me to keep the bullet outside the
&lt;a&gt; tag.&lt;/p&gt;

&lt;p&gt;Todd&lt;/p&gt;

&lt;p&gt;On Jul 30, 2008, at 1:37 PM, Walter Lee Davis wrote:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The only way I can think of to have the bullet be part of the link
  would be to suppress the regular bullet:&lt;/p&gt;
  
  &lt;p&gt;li.yourClass { list-style-type: none; }&lt;/p&gt;
  
  &lt;p&gt;&amp;#8230; and then manually add the bullets back in: &lt;code&gt;&amp;amp;bull;&lt;/code&gt; or Option-8
  on a US keyboard in regular Freeway text.&lt;/p&gt;
  
  &lt;p&gt;Otherwise, the bullet is expressly not a part of the LI&amp;#8217;s content,
  it&amp;#8217;s an outside &amp;#8220;marker&amp;#8221; to indicate where the LI starts.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Todd</author>
            <pubDate>Wed, 30 Jul 2008 18:48:01 -500</pubDate>
        </item>
        <item>
            <title>Re: WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119#m_37122</link>
            <description>&lt;p&gt;The only way I can think of to have the bullet be part of the link
would be to suppress the regular bullet:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;li.yourClass { list-style-type: none; }
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;&amp;#8230; and then manually add the bullets back in: &lt;code&gt;&amp;amp;bull;&lt;/code&gt; or Option-8
on a US keyboard in regular Freeway text.&lt;/p&gt;

&lt;p&gt;Otherwise, the bullet is expressly not a part of the LI&amp;#8217;s content,
it&amp;#8217;s an outside &amp;#8220;marker&amp;#8221; to indicate where the LI starts.&lt;/p&gt;

&lt;p&gt;Walter&lt;/p&gt;

&lt;p&gt;On Jul 30, 2008, at 1:25 PM, Todd wrote:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I was experimenting with the WY menu action and had a question about
  styling menus. Let&amp;#8217;s say you have a simple horizontal menu with 10
  links and between each link is a bullet:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; link1 &amp;lt;bullet&amp;gt; link2 &amp;lt;bullet&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
  
  &lt;p&gt;Naturally the links use a ul style and the bullets use the default
  body style. The problem with using the WY menu action is that there&amp;#8217;s
  no way (that I can see) to differentiate between the link and the
  bullet so the bullet ends up as part of the link. I could use a
  separate menu action for each menu link as opposed to one action for
  the entire menu but that seems a bit clunky or suppose I could use a
  long/rich text item and add the appropriate tags manually but that&amp;#8217;s
  a bit much for a non-technical client to manage. So the question is
  is there a way to maintain different styles using the menu action?&lt;/p&gt;
  
  &lt;p&gt;Todd&lt;/p&gt;
  
  &lt;hr /&gt;
  
  &lt;p&gt;offtopic mailing list
  email@hidden
  Update your subscriptions at:
  &lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>waltd</author>
            <pubDate>Wed, 30 Jul 2008 18:37:28 -500</pubDate>
        </item>
        <item>
            <title>WebYep - Menu Styles</title>
            <link>http://www.freewaytalk.net/thread/view/37119</link>
            <description>&lt;p&gt;I was experimenting with the WY menu action and had a question about
styling menus. Let&amp;#8217;s say you have a simple horizontal menu with 10
links and between each link is a bullet:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt; link1 &amp;lt;bullet&amp;gt; link2 &amp;lt;bullet&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Naturally the links use a ul style and the bullets use the default
body style. The problem with using the WY menu action is that there&amp;#8217;s
no way (that I can see) to differentiate between the link and the
bullet so the bullet ends up as part of the link. I could use a
separate menu action for each menu link as opposed to one action for
the entire menu but that seems a bit clunky or suppose I could use a
long/rich text item and add the appropriate tags manually but that&amp;#8217;s
a bit much for a non-technical client to manage. So the question is
is there a way to maintain different styles using the menu action?&lt;/p&gt;

&lt;p&gt;Todd&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;offtopic mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Todd</author>
            <pubDate>Wed, 30 Jul 2008 17:25:45 -500</pubDate>
        </item>
    </channel>
</rss>
