Okay
  Public Ticket #2680662
footer menu widget font size change
Closed

Comments

  • adam graves started the conversation

    need to change font family and sizer on the footer navigation. figured out how to change line height with:

    .material .widget li a {
        line-height: 10px !important;
    }

    BUT i need to make the font smaller and a different font.

  • adam graves replied

    never mind the line height doesn't work either. need help on that too...

  •  8,848
    Tahir replied

    Hey Again

    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):

    #footer-outer .widget.widget_nav_menu li a{
        font-family: 'Roboto' !important;
        line-height:13px !important;
        font-size:12px !important;
    }

    Thanks


    ThemeNectar Support Team