• Hi, great plugin

    I read a lot about how highlight the link color but none about how to set the background section color, like the plugin demo example (each section has its color).

    If you can help me, thanks

Viewing 1 replies (of 1 total)
  • Plugin Author malihu

    (@malihu)

    Setting a background color for your section is not related to the plugin or its scope. That’s why there’s no guide/tutorial for this.

    Setting different background color for each section is something you do via CSS within your theme’s stylesheet. For example:

    
    .your-section{
      background-color: red; 
    }
    
    .your-section:nth-child(odd){
      background-color: blue; 
    }
    

    For more info see :nth-child pseudo-class (same class used in plugin’s demo).

    Hope this helps 🙂

Viewing 1 replies (of 1 total)

The topic ‘Section color’ is closed to new replies.