serge Posted January 22, 2015 Report Posted January 22, 2015 These 2 pages do have a top light blue block I would like it will be 100% width. http://dev-blesta.netpublica.com/ http://dev-blesta.netpublica.com/about-us I was able to get it 100% width at doing this in css of my theme : .container { width:100%; } but doing that way give other pages content 100% width when I want only these light blue top block being 100% width and not the rest. Quote
0 Paul Posted January 22, 2015 Report Posted January 22, 2015 It sounds like you want your jumbotron to be outside of that container. Quote
0 Tyson Posted January 22, 2015 Report Posted January 22, 2015 The best way is to move the jumbotron outside of its current container, as Paul mentioned. However, if that's not doable, you could do absolute positioning, e.g. #myJumbotron { left:0; width:100%; position:absolute; } /* the div immediately after #myJumbotron */ div.container { margin-top:200px; } serge 1 Quote
0 serge Posted January 23, 2015 Author Report Posted January 23, 2015 Thank you, that worked fine, I'm so glad. The container was certainly coming from the core code-logic of CMS plugin, and Tyson idea was my solution Quote
Question
serge
These 2 pages do have a top light blue block I would like it will be 100% width.
http://dev-blesta.netpublica.com/
http://dev-blesta.netpublica.com/about-us
I was able to get it 100% width at doing this in css of my theme :
but doing that way give other pages content 100% width when I want only these light blue top block being 100% width and not the rest.
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.