Okay
  Public Ticket #2958971
Fancy Box transparency to color
Closed

Comments

  •  2
    Revisemarketing started the conversation

    Hi,

    The Fancy Box is standard transparent. I want it to be white, with dark text, and when on hoover the color changes from white to the blue color as it is doing right now. 

    Is it possible to make the fancy box standard white? 

  •  2,959
    Andrew replied

    Hi there,

    Use the following CSS.

    .nectar-fancy-box[data-style="color_box_hover"] .box-bg {
        opacity: 1;
    }
    .nectar-fancy-box[data-color="accent-color"]:not([data-style="default"]) .box-bg:after {
        background-color: white !important;
    }
    .span_12.light .nectar-fancy-box[data-style="color_box_hover"] .inner-wrap * {
        color: black;
    }
    .nectar-fancy-box[data-style="color_box_hover"]:hover .box-bg:after {
        background-color: black !important;
    }
    

    Regards,