Menu Font/Slider Font

Discussion in 'Cloriato WordPress Theme' started by pricewc, Oct 7, 2014.

  1. pricewc

    pricewc Guest

    Joined:
    May 23, 2014
    Messages:
    8
    Likes Received:
    0
    How can I make the menu font, bold and possibly bigger? Also the same with the font that appears on the slider images.
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    For menu:
    Code:
    ul.ddsmoothmenu li a {
    font-size: 16px !important;
    font-weight: bold;
    }
    
    For slider text (heading):
    Code:
    #slides .caption h2
    {
    font-size: 25px !important;
    font-weight: bold;
    }
    For slider text:
    Code:
    #slides .caption p
    {
    font-size: 16px !important;
    font-weight: bold;
    }
    Thanks & Regards
    Pramod
     
  3. sndinc

    sndinc New Member

    Joined:
    Feb 22, 2012
    Messages:
    1
    Likes Received:
    0
    How can I change the colors of the navigation text and the background of the nav bar? I would like the text white and the background of bar black.
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu {
    background: black;
    }
    #menu li a {
    color: white;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page