[Resolved] sidebars

Tagged: 

  • Author
    Posts
  • #3708

    Tricia
    Participant

    Hi Andrew,

    Is it possible to have different sidebars for different parts of the site? I have a few main landing pages, but then would like to have navigation on the left side for those individual areas. Right now I”m only seeing one sidebar and when I use it, it applies to all of my pages that have side navigation.

    #3711

    Andrew Misplon
    Keymaster

    Hi Tricia

    WooSidebars or Jetpack Widget Visibility are an easy way of controlling which widgets appear in certain situations:

    WooSidebars


    Home

    I prefer Widget Visibility but it’s a personal preference.

    However, Ultra only has one sidebar which you can globally position right or left from the Customizer. In the next update we’ll have page settings that’ll let you set sidebar position per page, unfortunately this isn’t ready yet. If you send the link to those landing pages I can try assist with custom CSS in the mean time.

    #3729

    Tricia
    Participant

    Thanks Andrew. WooSidebars is working great for what I need.

    I was able to tweak the look of my sidebar by adding this to the Custom CSS, to get a colored background:

    .sidebar #secondary {
       background-color: #6684c6;
       padding-top: 2%;
       padding-right: 2%;
       padding-left: 2%;
       width: 20%
    }

    But now I need to adjust the font color (a.hover, a.active, a.visited). Do you know what this code would be?

    Thanks!

    #3735

    Andrew Misplon
    Keymaster

    Sure, for sidebar only link colors, try :

    /* Sidebar */
    #secondary a {
        color: #0896fe;
    }
    
    #secondary a:visited {
        color: #0896fe;
    }
    
    #secondary a:hover,#secondary a:focus,#secondary a:active {
        color: #0896fe;
    }
    #3736

    Tricia
    Participant

    It worked!! Fantastic!!! Thank you Andrew!

    #3737

    Andrew Misplon
    Keymaster

    Super, glad that did the trick.

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.

Scroll to top