Jump to content

Full Width Center Column on home page


Recommended Posts

You just need to change CSS, but you will need some additional knowledge of CSS/HTML etc. I do not think that anyone will do this for free as it needs to be done seeing all your files, changing them etc.

 

By the way there were similar topic on this forum recently, so try to look for it.

Link to comment
Share on other sites

  • 7 months later...

Add the following lines to style.css. Use !important if necessary.

body#index #center_column { width: 100%; }
body#index #right_column {display: none; }
body#index #left_column {display: none; }

 

By changing #index to sites body tags id, you can apply it on other pages as well.

  • Like 1
Link to comment
Share on other sites

  • 4 years later...

template/header.tpl

 

 

Find this

 

 

<div class="columns-container">
<div id="columns" class="container">

 

and add {if $page_name =='homepage'}-fluid{/if} inside class container.

 

final : 

 

<div class="columns-container">
<div id="columns" class="container{if $page_name =='homepage'}-fluid{/if}">

 

Class container uses cleared fix.Excepting homepage will make it be full screen.But i think you have to edit css for some pixels not showing in the left side.

 

Edited by AlexTechnologysuppt (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...