Change the Divider Bar

Where to copy/paste this code?
The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme with Customizr here.

Change the Divider Bar on Front Page:

/* START OF Change the Divider Bar */
/* 2px=thickness, solid=style (dotted-dashed-solid-double-groove-ridge-inset-outset), red=color */
.home .featurette-divider {
border:         2px solid red;
}
/* END OF Change the Divider Bar */

 

Change the Divider Bar on all Posts/Pages:

/* START OF Change the Divider Bar */
/* 2px=thickness, solid=style (dotted-dashed-solid-double-groove-ridge-inset-outset), red=color */
.featurette-divider {
border:         2px solid red;
}
/* END OF Change the Divider Bar */

 

Remove the Divider Bar on all Posts/Pages:

/* START OF Change the Divider Bar */
.featurette-divider {
display:        none;
}
/* END OF Change the Divider Bar */

 

6 thoughts on “Change the Divider Bar”

Comments are closed.