Skip to main content
Known Participant
July 31, 2013
Question

Font size when using cfmenu and cfmenuitem

  • July 31, 2013
  • 1 reply
  • 594 views

I am using cfmenu and cfmenuitem to create my menus.  When I change the font-size using "fontsize" in cfmenu or using "font-size: 12pt;" in css style configuration the menu name buttons display does not change in size.  Other things in the style configuration change when display, but not size.  Any thoughts are welcome.

This topic has been closed for replies.

1 reply

vishu_13
Inspiring
August 5, 2013

Hi 

Can you test the code mentioned below

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

</head>

<body>

<cfmenu name="menu" type="horizontal" fontsize="22" bgcolor="##CCFFFF">

    <cfmenuitem name="coldfusion"

      

       href="http://www.adobe.com/products/coldfusion" display="ColdFusion">

      

        <cfmenuitem name="buy"

      

       href="http://www.adobe.com/products/coldfusion/buy/" display="Buy"/>

      

    </cfmenuitem>

   

   

    <cfmenuitem name="Trial"

   

    href="http://www.adobe.com/" display="Trial">

    <cfmenuitem name= "Download"

   

    href="http://www.adobe.com/cfusion/tdrc/index.cfm?product=coldfusion&promoid=DJDUK" display="Download"/>

   

    </cfmenuitem>

    

   

   

</cfmenu>

</body>

</html>

I tested the same with font size 22 , result is:

I tested the same with font size 12 , result is:

Thanks

VJ

KarolusAuthor
Known Participant
August 5, 2013

Thanks for sending the code. I’m very busy for a couple of days and can’t get to it. Will let you know the outcome. Thanks for your help.