Hello,
I have a problem with background in “big-preview” class (I think).
In my custom.css I have this :
html, .socket_color, .footer_color, .alternate_color, .container_wrap_logo, .main_color{
background-image: url(../../../../../img/background.svg), url(../../../../../img/background_dark.png);
background-size: 100% 100%, auto;
background-position: left top, left top;
background-repeat: no-repeat, repeat;
background-attachment: fixed, fixed;
}
but in single post without sidebar with big preview as you can see here:
http://www.juls.ch/studios/lost/
there is a border without my background but with color defined in styles options.
How can I remove this border??
Thx
Jul
Hi,
Try to add this on your custom.css or Quick CSS
.single .main_color .big-preview {
background-color: none;
}
Regards,
Ismael
Hi,
Doesn’t work… :o(
Jul
Hi!
none is not a valid color value – try following code instead:
.single .main_color .big-preview {
background-color: transparent;
}
or
.single .main_color .big-preview {
background-color: transparent !important;
}
Regards,
Peter
Hi,
Thx! It works fine with
.single .main_color .big-preview {
background-color: transparent !important;
}
Best regards,
Jul