CMS Development

PaulG2
Member

Text showing on top of image

SOLVE

Hi All,

At the very bottom of this page (last 4 people listed) I am using a flexible column with custom modules.

https://www.lsxleaders.com/longevity-leaders-congress/speakers

Hopefully you can see that the text is currently showing on top of the image.

I'm having trouble sorting that out. Any ideas?

My level of coding is minimal at best!

Many thanks

Paul

0 Upvotes
1 Accepted solution
AlexanderData
Solution
Member | Diamond Partner
Member | Diamond Partner

Text showing on top of image

SOLVE

This happens because you have defined this:
.box-width {
     height: 198px;
This makes this box have that measure and since the photo is larger than the box, it makes the text appear above the photo.

change this: height: 198px; for this: height: auto;

 

Regards

View solution in original post

0 Upvotes
2 Replies 2
AlexanderData
Solution
Member | Diamond Partner
Member | Diamond Partner

Text showing on top of image

SOLVE

This happens because you have defined this:
.box-width {
     height: 198px;
This makes this box have that measure and since the photo is larger than the box, it makes the text appear above the photo.

change this: height: 198px; for this: height: auto;

 

Regards

0 Upvotes
PaulG2
Member

Text showing on top of image

SOLVE

Fantastic!

0 Upvotes