Hi guys,
Can I mix font size for menu name? eg.
ITOOL Menu ... let's say I want the 'TOOL' to be size 11, while others stay at size 12.
The only way I can think of is to use images.
Any suggestions are welcome, thanks
Twing.
Mixing font size in menu - [Solved]
To use different sizes within an item you can use or you could use It doesn't seem you can use px. For example if you try to set You get some weird things in some browsers, like a really huge ITOOL. If you're not specifying px, em etc, I think you would use this shows font-size=1 but you'd use what you wanted, 1, 2, 3, 4. I'm not sure exactly how high up that particular 'formula' goes. As you noted the only other way would be to use an image, which in reality is the safest way since all the browsers would then see it the same.
Ruth
Code: Select all
<big>Bigger Text</big>
Code: Select all
<font size=1em>ITOOL</font> Menu
Code: Select all
<font size=11px>ITOOL</font> Menu
Code: Select all
<font size=1>ITOOL</font> Menu
Ruth
I've also used spans and css to achieve a similar effect.
And then set the style in your stylesheet. Or, you can set the css inline. Basically, if you can do it in a regular page, you should be able to do it in a menu item.[/code]
Code: Select all
aI("text=I<span class=smallertext>TOOL</span>;url=example.html;");