• Hello

    Is there a r reference for css selectors used in the theme. I’ve been trying to find one to alter font size colour in the default menu at top right (appears when no menu is specified)

    Tried various but cannot find it – help please!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • /* style.css */
    html {
      font-size: 62.5%; /* 1rem = 10px */}
    body {
      font-size: 1.8rem;}
    .primary-menu li {
      font-size: inherit;}
    .primary-menu a {
      display: block;
      line-height: 1.2;}
    
    /* inline style */
    body:not(.overlay-header) .primary-menu > li > a {
      color: #cd2653;
    

    Hello,
    Well, the best cheat sheet is the theme’s style sheet…
    Download the theme, and go through the file style.css; or, check with the developers tool.

    What is the website you’re having issues with?
    You left it in blank

    Anyway… Try the following (I’m adding color and font size to the active links in the primary menu)

    ul.primary-menu a {
    	color:green!important;
    	font-size:1.5rem;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS Selectors’ is closed to new replies.