Jump to content

Recommended Posts

hi all, i wanted to know when you create a CMS is there a way to make it full page on the site instead of it having both columns on the sides.. I have a ton of info i must post and its in the center column which will make it very very long, is there any options out there or a module that will create a full page i can link to the site..

 

thanks

Link to comment
Share on other sites

thanks, so it's easy to achieve :)

 

open the file:

controllers/front/CmsController.php

 

you've got there init() function, code should looks like:

public function init()
{
parent::init();
...
...

 

you have to add:

$this->display_column_left = false;
$this->display_column_right = false;

 

 

so change init function to:

public function init()
{
$this->display_column_left = false;
$this->display_column_right = false;
parent::init();
...
...

Link to comment
Share on other sites

you're welcome B) so, now i can mark this thread as [solved]

btw. you can also mark own threads as solved, this markup is really helpful for other community members - if they see it, they know that in the thread they can get working solution :)

 

below i pasted step-by-step instruction:

To mark a topic as [solved] :

- Edit the first post of your topic by clicking on the "Edit" button,

- Click on the "Use full editor" button,

- Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button.

 

btw. i also moved your thread to the correct forum section :)

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...