Jump to content

Remove left column from "about us page"


Santietsit

Recommended Posts

You can easy turn off left column on all cms pages, but if you want turn it off only one you must edit your theme and there prepare some if statement checking on what page you are and then hide left column.

Other option is adding some css code like that:

.cms-id-9 div#left-column {
    display:none;
}

.cms-id-9 #content-wrapper {
    width: 100%!important;
}

 

  • Thanks 1
Link to comment
Share on other sites

This has been extremely helpful!!

1 hour ago, endriu107 said:

You can easy turn off left column on all cms pages, but if you want turn it off only one you must edit your theme and there prepare some if statement checking on what page you are and then hide left column.

Other option is adding some css code like that:

.cms-id-9 div#left-column {
    display:none;
}

.cms-id-9 #content-wrapper {
    width: 100%!important;
}

 

 

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...