-
Closed
-
I am using evolve+ and am trying to make the background on pages and posts transparent so that the website background can be seen behind the text. Please let me know how to do this.
Hi,
Please post your website url.
Thanks!
Until it is ready, it is at a temporary URL which is: http://173.254.97.203/~mericdl8/.
Hi,
In Theme Options -> Custom CSS.
Please use the following first.
Clean up the lines later. It’s too confusing.
#wrapper {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
border: medium none !important;
}
.widget-content {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
border: medium none !important;
}
table{
border: medium none !important;
}
Thank you. This helps greatly; however, there is still a slight horizontal border on the tables and a horizontal and vertical border on some of the various sections of the page. These borders/lines are darker sometimes and lighter at other times depending on the background color. I know that the customer isn’t going to want any borders to be visible. Can you help tweak the CSS to eliminate the borders?
Hi,
Please use the following.
td, th{
border:none !important;
}
.widget::after{
background:none !important;
}
.content-bottom{
display:none;
}
Thanks!
I added the additional CSS code, and that did the trick for the tables. There is still a border around the Tag Cloud in the footer though. Can you provide additional CSS code to remove this border?
Hi,
Please use the following codes.
.widget-content {
border: medium none !important;
box-shadow: none !important;
}
Thanks!
Thank you very much. That works great. The only area that still have a white background are the areas behind each image. The images themselves have a transparent background, but wordpress is displaying a white background behind and around the image. Could you provide custom CSS code to make the border behind and around images transparent?
Thank you.
Hi,
Please use the following codes.
img {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
border: medium none !important;
box-shadow: none !important;
}
.container.container-header.custom-header {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0 !important;
}
Thanks!
Thank you. This almost has it except that the customer CSS code for the header removes the header image completely. My customer does want to see the header image.
The topic Make Page and Post Background Transparent is closed to new replies