Page 1 of 1
Text align
Posted: Sunday 31 October 2021 6:36
by edwin1234
How to align a blocktitle to the middle ?
Now my blocktitles are align to the left and i cant find out hiw to change it.
Noob here , be gentle

Re: Text align
Posted: Monday 01 November 2021 21:09
by Lokonli
Assume you have defined a block in CONFIG.js with:
blocks['customblock'] = ...
add the following to custom.css:
Code: Select all
.block_customblock .title {
text-align:center;
width: 100%;
display: inline-block
}
or, by using the addClass parameter, define a block as follows:
Code: Select all
blocks['anyname'] = {
addClass: 'centeredtitle',
...
}
and add to custom.css:
Code: Select all
.centeredtitle .title {
text-align:center;
width: 100%;
display: inline-block
}
Re: Text align
Posted: Tuesday 02 November 2021 8:03
by Doudy
Re: Text align
Posted: Wednesday 03 November 2021 16:48
by edwin1234
Thank u very much for your help.