
Originally Posted by
tomtomg
Any chance you know what css may do the job?
Tom
When you create a new block it's assigned it own unique HTML I.D that you can then target via CSS. So to find this out, go into 'Block Editor' > 'Properties' and scroll down to 'Variable for HTML' - now make a note of just the number.
Now lets say that number is 35 for example purposes, you can now add the following to the CSS to make that particular block 100% width:
Code:
#cb_id_35 {
max-width: 100% !important;
}
Be aware though that if either of the left or right block columns are enabled, then the full-width WON'T work!! However, I assume you want the banner on your homepage and as such, you wouldn't really want these columns displayed there.
Let us know how you get on,
Mike