Equalise heights of columns in a row?

Posted in: Newspaper
Post count: 113

I’d like to equalize the height of columns in a row so I can have different backgrounds that don’t get cut off when the text is shorter on one.
Is this possible?

Post count: 113

if you look at this screen, you’ll see the first column is shorter, it looks bad…

http://i.share.pho.to/b1343613_o.png

d

Post count: 20688

Hi,

Maybe you can try and make the text length the same or similar, to have equal height in the columns. If that is not possible, you could try and set a minimum height for the columns with CSS. What elements are you using there? Provide a link to that page if possible.

Post count: 113

Thanks but it’s way too fluid for min height, I cannot change the clients text.
https://harvest.modus.ie/

I have also tried using table/table-cell but the way the page is constructed won’t allow for this.

Post count: 113

This is the only work around I can come up with…

@media (min-width: 768px) and (max-width: 1024px){
.home-row1 .td-element-style {
background: #7d7d7d;
background: -moz-linear-gradient(left, #7d7d7d 0%, #767676 50%, #6e6e6e 100%);
background: -webkit-linear-gradient(left, #7d7d7d 0%,#767676 50%,#6e6e6e 100%);
background: linear-gradient(to right, #7d7d7d 0%,#767676 50%,#6e6e6e 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7d7d7d', endColorstr='#6e6e6e',GradientType=1 );
}
}

Post count: 20688

I see they look better now, they have the same height – http://prntscr.com/k4aq8u
Having an equal amount of text would be a better and easier solution when possible, in these cases.

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.