XF 1.5 100% width inside of main content

thunderup

Active member
Licensed customer
So if I have a page set to 1190px width on the main content container..

What CSS would I need if I was to add a widget and wanted it to go 100% page width (1920px for example) inside of the main content container?

Thanks!
 
In general, the easiest way to achieve that is to have the widget outside the div where the width is set to 1190px.
 
The PAGE_CONTAINER template, between these two lines:
Code:
<div id="content" class="{$contentTemplate}">
    <div class="pageWidth">
 
Back
Top Bottom