Hello,
I was wondering if you had code for the following two things?
1. My border colour for main content throughout the theme is white, but on the blog page only I would like it to be black as this is the only page I am using a sidebar on. Is this possible?
2. On the blog page the images have a blue line around them (link below). Is there a way to remove this without affecting the colour throughout the rest of the theme?
Thank you
Lauren
Hey Laureninthailand!
Please add following code to Quick CSS
.blog a.slide-image {
background: transparent!important;
}
.blog .content, .blog .sidebar {
border-color: black;
}
Best regards,
Yigit
That was a quick reply! Thank you.
Is it possible to get the black border on the single blog posts too?
Hey!
Sure, please add following code to Quick CSS as well
.single-post .sidebar, .single-post .content {
border-color: black;
}
Cheers!
Yigit
Fabulous. Thank you so much for the quick response.