Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #23839

    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

    #121300

    Hi,

    Try to add this on your custom.css or Quick CSS

    .single .main_color .big-preview {
    background-color: none;
    }

    Regards,

    Ismael

    #121301

    Hi,

    Doesn’t work… :o(

    Jul

    #121302

    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

    #121303

    Hi,

    Thx! It works fine with

    .single .main_color .big-preview {
    background-color: transparent !important;
    }

    Best regards,

    Jul

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Background problem…’ is closed to new replies.