Font – Primary Nav

Homepage Community Forums Epik Theme Support Font – Primary Nav

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #7010
    alxrods
    Customer

      Trying to adjust the font size and typography for primary navigation. I have tried several spots and keep missing where to adjust the stylesheet. Suggestions?

      #7017
      Wes
      Moderator

        For the Widget Title look on line 1106 in your css –

        .widgettitle {
        	color: #333;
        	font-size: 18px;
        	font-size: 1.125rem;
        	letter-spacing: 1px;
        	letter-spacing: 0.1rem;
        	margin-bottom: 16px;
        	margin-bottom: 1rem;
        }

        For the sidebar text look on line 2417 for this –

        .sidebar {
        	color: #666;
        	font-size: 16px;
        	font-size: 1rem;
        }

        The hyperlinks inherit whatever the main link color so if you want to change it add this –

        .sidebar a {
        	color: #666;
        	font-size: 16px;
        	font-size: 1rem;
        }

        ….and then just change it to whatever you want.

      Viewing 2 posts - 1 through 2 (of 2 total)
      • You must be logged in to reply to this topic.