Header logo image does not center horizontally when width is changed

Posted in: Newspaper
Post count: 11

Hello,

I change the width of the image in header logo element to let’s say to 70%. Unfortunately, although the Horizontal Align button is set in header logo options, the image does not center in the column. It insists to align on the left instead. I also tried to set the H. Align dropdown to Center, but it does not help either.

Post count: 11

I have found what is wrong:

tdb_less_front.css, Line 36:


.tdb_header_logo .tdb-logo-img-wrap img {
display: block;
}

displays the image as a block and it fills the element it is in. So there is no room left to align. This must be removed or set to


.tdb_header_logo .tdb-logo-img-wrap img {
display: inline;
}

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