Jump to content

Changing left and right handlcolumn widths


Littlepants

Recommended Posts

HI,
am gonna give you methods to resolve the issue.

First : CSS METHOD
Connect by FTP and go to themes->default-bootstrap->css->global.css.
open the global.css at the end of this file add this :
#left_column{
    width: here the size you need;
}
#left_right{
    width: here the size you need;
}

Then save the file. And the clean the cache.


SECOND METHOD:
Connect by FTP and go to themes->default-bootstrap->layout.tpl
Open the layout.tpl and the change the value {$left_column_size=3} for the left column and {$right_column_size=3} for the right column.
By default the width of the right and left column is 3 but you can change with whatever you need.
Then save the file. And the clean the cache.

{assign var='left_column_size' value=0}{assign var='right_column_size' value=0}
{if isset($HOOK_LEFT_COLUMN) && $HOOK_LEFT_COLUMN|trim && !$hide_left_column}[color=#00ffff]{$left_column_size=3}[/color]{/if}
{if isset($HOOK_RIGHT_COLUMN) && $HOOK_RIGHT_COLUMN|trim && !$hide_right_column}[color=#a52a2a]{$right_column_size=3}[/color]{/if}
{if !empty($display_header)}{include file="$tpl_dir./header.tpl" HOOK_HEADER=$HOOK_HEADER}{/if}
{if !empty($template)}{$template}{/if}
{if !empty($display_footer)}{include file="$tpl_dir./footer.tpl"}{/if}
{if !empty($live_edit)}{$live_edit}{/if}

Thanks

Link to comment
Share on other sites

HI,
am gonna give you methods to resolve the issue.

FIRST : CSS METHOD
Connect by FTP and go to themes->default-bootstrap->css->global.css.
open the global.css at the end of this file add this :
#left_column{
    width: here the size you need;
}
#left_right{
    width: here the size you need;
}

Then save the file. And the clean the cache.


SECOND METHOD:
Connect by FTP and go to themes->default-bootstrap->layout.tpl
Open the layout.tpl and the change the value {$left_column_size=3} for the left column and {$right_column_size=3} for the right column.
By default the width of the right and left column is 3 but you can change with whatever you need.
Then save the file. And the clean the cache.

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