Widget Lines and Border

Hello,
i’m newbie in Wordpress world and after some test with different themes finally i found your theme very good for me and my requirement. Good Blog and Woocommerce compatible.
First problem with sidebar, i need to change the lines and border color for all widget, i searched in all forum without success,
Second problem i changed the first post line with this parameter in CSS

.page-header {/* This code will change the color first line post */
border-bottom: 2px solid #e6d0a4;
}
but i cannot find the parameter for the line at the bottom of the post.
Thanks
Andrea

Hi Andrea,

I hope you are well today and thank you for your questions.

First problem with sidebar, i need to change the lines and border color for all widget, i searched in all forum without success,

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

#secondary .widget * {
    border-color: #e6d0a4;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

Second problem i changed the first post line with this parameter in CSS but i cannot find the parameter for the line at the bottom of the post.

You can change it by using the following CSS code.

article hr.section-divider {/* This code will change the color of second line of post */
    border-top: 2px solid #e6d0a4;
}

Best Regards,
Movin

Hi Movin,
thank you for your help. I follow your instruction and it’s working fine.
Have a nice day

Best Regards
Andrea

You are most welcome here :slight_smile: