Archived topic
Background for columns?
1 reply · Started by Rocky on November 4, 2018
I have a 2 columns on this page https://rockyullah.com/myproducts/
I'm trying to get a background for the columns under the image similar to this:
https://www.screencast.com/t/DxrPazLPln
I'd like to get the same effect.
Also you'll see on this page: https://tinylittlebusinesses.com/products/
How the whole columns are clickable and the images glow when you hover over them. Any idea how to do this as well?
Thanks
Hi there,
You could try wrapping your column content in a block link:
<a href="#your-link" class="column-block-link">
Your column content.
</a>
Then try this:
a.column-block-link {
display: block;
background: #555;
}
The WP editor might have an issue with adding links around divs though. It may be worth checking out Gutenberg and using an HTML block.