Okay
  Public Ticket #3091039
Page Submenu Font
Closed

Comments

  •  8
    Shane started the conversation

    Hi guys.. which font setting affects the Page Submenu font properties? The page is linked in the Related URL and while we're on the topic, is there somewhere that you list or showcase all font correlations?

    Thank you in advance, Shane :)

  •  1,646
    Judith replied

    Hello Shane,

    Thanks for keeping in touch.

    You can get the set font features from Salient > Typography section.

    However for the page submenu you can adjust the font features using this css:

    .page-submenu ul {
        color: red !important;
        font-size: 14px;
        font-family: cursive;
    }

    Thanks.

  •  8
    Shane replied

    That worked, thank you :) Is there an option to BOLD the text? Sorry, I am CSS illiterate. 

  •  8,403
    Tahir replied

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .page-submenu ul {
        color: red !important;
        font-size: 14px;
        font-family: cursive;
        font-weight:bold;
    }

    Thanks


    ThemeNectar Support Team 

  •  8
    Shane replied

    Perfect, thank you :)