Force Block Title width

Posted in: Newspaper
Post count: 34

Hello, I need to force the block title width to all same size, like this picture
http://www.screencast.com/users/VjCoil/folders/Default/media/60a039fc-ce1f-41b4-b3f6-be196c5e7787

Thanks

Post count: 20688

Hi,

The block title width dependents on the actual block title used. You could set a fixed width to the block titles, maybe like this
https://www.screencast.com/t/tcageHLZuX
Experiment with different width values in the code until you reach the desired result. This code will affect all the blocks on the website, after you enter it in Theme panel->Custom CSS

.block-title span {
width: 150px;
}

Thanks

Post count: 34

Works only in one block, all the others remais with diferent width

http://www.screencast.com/users/VjCoil/folders/Default/media/3a717e73-3d69-4f07-b142-3611005c284f

Post count: 20688

Hi,

I have tested this and it should apply for all block titles
https://www.screencast.com/t/uplbLkkwb
Try using the code with important like this

.block-title span {
width: 150px!important;
}

Forgot to mention, if you want it to have effect only on the homepage blocks, it would be like this

.home .block-title span {
width: 150px!important;
}

If it is still not working it would be helpful if you could provide a link to your website so I can identify why this is happening.

Thanks

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