• LGLabLGLab
    March 2012
    Hi,

    I can't find where to change the main nav text colour (can't see in appearance and can't find in css), and also the text color of the pagination text like "Page 1 of 6" bottom left of pages.

    Thanks.
  • mikemike
    March 2012
    Check out the style.css file:

    There is a table of contents at the top of the document that will point you to the correct styles. The body for example is near the top found here:
    03. COMMONLY ADJUSTED STYLES

    body {
    font-size:12px;
    line-height:20px;
    min-width:1000px;
    font-family:"Helvetica Neue", Helvetica, Arial, Sans-Serif;
    background:#e8e8e8 url(images/background.png) top left repeat;
    color:#919191;
    }


    The pagination is called under 04.Primary Styles.
  • LGLabLGLab
    March 2012
    Thanks Mike,

    But I meant the "main nav text colour" not the body, as in the menu, found it under "WIDE NAVIGATION SKIN".
  • mikemike
    March 2012
    Yes, we have a table of contents at the top of the style.css file. I'd suggest checking that out and it should point you to anything you want to style
  • vicmarvicmar
    March 2012
    I made the following changes to the style.css file
    body {font-size:18px; line-height:20px; min-width:1000px; font-family:"Helvetica Neue", Helvetica, Arial, Sans-Serif; background:#e8e8e8 url(images/background.png) top left repeat; color:#000000;}

    and nothing changed on my site.
    Any suggestions as to what I have done wrong?

  • mikemike
    March 2012
    It's working fine. Your default font-color is solid black now. Try color:red; if you are having trouble seeing the changes.
  • vicmarvicmar
    March 2012
    Awesome Mike. thanks for your help and patiences
  • El_DuongerEl_Duonger
    March 2012
    hi mike, can changes to the font color, size, etc be made in the "Custom CSS" section of the "Tools" tab for the Broadside theme options? i've been trying yet so far unsuccessfully. thanks!
  • mikemike
    March 2012
    Yeah, you should be able to add any custom css to the options panel and it should work without problems. Feel free to post a link to your site after you've attempted changes and I'll check out what the problem is.
  • El_DuongerEl_Duonger
    March 2012
    to save you time, i need to change the h5 font color globally and would rather do it in the custom CSS field to keep it easy when updating the theme down the road. do you have a sample css command line to do this? the site is adroam.tv. thanks!
  • mikemike
    March 2012
    The heading fonts are set in the options panel. If you want to override them, just add !important at the end of the styling.

    So the code would be like so
    h5 {color:#ffffff !important}

    Add the important if your style isn't be implemented.
  • El_DuongerEl_Duonger
    March 2012
    Excellent! Works great. I guess i was missing the "!important" piece. Thanks!
  • El_DuongerEl_Duonger
    March 2012
    The h5 color change in the custom CSS field worked great. I now want to change the h6 color but just for the sub nav in the header found here: http://adroam.tv/advertisers/. i thought i could do the same but can't seem to find the line of code that changes just the sub nav font color. I basically want the current page sub nav to be grey with the other sub nav items to be a different color. Is this possible and can you tell me which lines of code do this? thanks!
  • mikemike
    March 2012
    You will need to check the style.css file for editing any styles. There is a table of contents at the top that will lead you to necessary styles.
  • El_DuongerEl_Duonger
    March 2012
    okay, used firebug and found the style location and made the updates to the custom CSS field in the tools option area.

    ul.sub-navigation li.current_page_item a {
    color: #515151;
    }

    ul.sub-navigation li a {
    color: #FFFFFF;
    }

    works great. thanks for your help.
  • dmcdmc
    March 16
    * sorry moved to Broadside Theme discussion*