Image wrapping

Hi!
I wanted to ask something.
Basically I am using three columns in a row. How can I make an image occupy the entire column space both horizontally and vertically or either? I am using a text editor not cornerstone

Hi @abheeshekj,

Thank you for reaching out to us. You can do this with background image. First assign a class to your column e.g column-background and then you can add a background image to the column using the following code:

.column-background {
    background-image: url(http://link-to-your-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

You can add the above code in the Theme Options > CSS. To learn more about CSS background property please see https://www.w3schools.com/css/css_background.asp

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.