hello
my test page is in the private area, below. I have a tiled 0.3 alpha cricle as a placeholder using the settings in the color section but I’d like to have just one image centered both vertically and horizontally instead. Please letm know what css is needed to do this and thank you :)
Ok, I’m getting close but can’t seem to make it just one image. I’ve created a custom class for the overlay and added this –
/* custom overlay to override section bg overlay settings */
.singleIcon .av-section-color-overlay {
opacity: 1 !important;
background-image: url("http://www.terracesatsfu.com/wp-content/uploads/2017/03/logo.png");
background-repeat: no-repeat center center !important;
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
height: 100%;
width: 100%;
}
As you’ll see it’s now centered and everything is being applied except it’s still tiling – I’m missing something really obvious here?
Hi,
Try this code in the General Styling > Quick CSS field:
.singleIcon .av-section-color-overlay {
opacity: 1 !important;
background-position: center !important;
background-image: url(https://www.terracesatsfu.com/wp-content/uploads/2017/03/logo.png) !important;
background-repeat: no-repeat !important;
}
Best regards,
Mike
Worked perfectly!!!!! thanks so much :)