Sidebar & page content Widgets

Home Support Winsome Sidebar & page content Widgets

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #6527
    Anonymous
    Inactive

    As you can see after adding background image to my site http://www.gonaturalhealer.com, content and sidebar is barely visible.

    How do i edit background color and text color of the Sidebar & Page content Widgets?
    Any CSS code to do that?

    #6528
    ProDesigns
    Keymaster

    Hi @EdwinGnh,

    You can use custom css for it. Please go to Appearance >> Customize >> Additional CSS and add following css:

    body {
        color: #fff;
    }
    .sidebar a,
    .site-title > a,
    .site-description,
    .main-navigation ul li a {
        color: #fff;
    }

    You can add more css like this as per your requirement.

    If you need quick support you can use our online chat service as well.

    Thank you.

    #6529
    Anonymous
    Inactive

    I need to change color of widget title too.
    Is it possible to tweak the widgets’s background color too?

    Pls advice,
    Thanks a million

    #6530
    ProDesigns
    Keymaster

    Hi @edwingnh,

    It will be better if you give white background to all widgets. You can use following code for it:

    .sidebar .widget {
        background: #fff;
    }

    Please remove .sidebar a, from the css codes we have provided previously.

    Thank you.

    #6531
    Anonymous
    Inactive

    The page widget(next to sidebar) background, where i write on my page is still transparent.

    Any solution?

    #6532
    ProDesigns
    Keymaster

    Hi @edwingnh,

    You can use following css for main content area.

    #primary {
        background: #fff;
        color: #777
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.