We have a third party system that we use to display some of our webpages. We have control over the header and footer via a cms that allows us to place whatever content we want inside header and footer layers. We also have control of the css.
i.e.
<div id='header'>
we can edit here
</div>
website content
<div id='footer'>
we can edit here
</div>
Our website is centralised so I want to put a wrapper around the content, however, we can only edit between the div tags, not the div tags themselves. So I am limited to something like to center the content
<div id='header'>
we can edit here
<span id='wrapper'>
</div>
website content
<div id='footer'>
</span>
we can edit here
</div>
Will this work as the spans start and finish inside divs?
i.e.
<div id='header'>
we can edit here
</div>
website content
<div id='footer'>
we can edit here
</div>
Our website is centralised so I want to put a wrapper around the content, however, we can only edit between the div tags, not the div tags themselves. So I am limited to something like to center the content
<div id='header'>
we can edit here
<span id='wrapper'>
</div>
website content
<div id='footer'>
</span>
we can edit here
</div>
Will this work as the spans start and finish inside divs?