Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #176606

    Hi,

    I am trying to customize the sidebar font color.

    I have tried the following in the quick css without success:

    #top #main
    .sidebar {
    background-color:#738ca2;
    font-size:80%;
    font-color: #fff;
    }

    Any clues?

    #176709

    Hello lpongo!

    You can try forcing it by adding !important

    #top #main
    .sidebar {
    background-color:#738ca2!important;
    font-size:80%!important;
    font-color: #fff!important;
    }

    If that does not work, please post the link to your website

    Best regards,
    Yigit

    #176718

    It worked for the text but broke the bg-color attribute

    #176721
    This reply has been marked as private.
    #176752

    Hi!

    Can you post a screenshot as well?

    Regards,
    Yigit

    #176759
    This reply has been marked as private.
    #176776

    Hello!

    Currently your sidebar loks like your “before” screenshot.
    If you would like to change background color to white, please add following code to Quick CSS as well

    #top #main .sidebar { background-color: white; }

    Regards,
    Yigit

    #176974

    That’s what I meant, I can get the font to be white (intended) but then the background is white too (not intended).
    When using
    #top #main
    .sidebar {
    background-color:#738ca2!important;
    font-size:80%!important;
    font-color: #fff!important;
    }
    The background should be blue (#738ca2) and now it is not. How can I solve this?

    #177015

    Hey!

    Currently your sidebar is blue? You just need to change sidebar link colors. Please add following code to Quick CSS

    .main_color .sidebar a { color: white; } 
    .main_color .sidebar a:hover { color: green; }
    .main_color .sidebar .current_page_item>a { color: purple; }

    Best regards,
    Yigit

    #185235

    Working, thanks!

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Sidebar font customization’ is closed to new replies.