Hi Mark. Glad we could help.
It sounds to me like you have not changed the configurable sidebars option in the index.php. Look over the guide where it says
"configurable sidebars"
In a nutshell the settings you need to adjust are here. Yours looks like this currently:
| Code: |
#
// Use the following option for quick off LEFT and RIGHT positions displaying.
#
//By default
#
'default'=>'left-content',
#
// specify extra options for different components
#
// if you do not write left or right - these positions wont be published
#
// left-right-content | right-left-content | content-right-left | content-left-right
#
// left-content-right | right-content-left
#
// right-content | content-left | left-content | content-right
#
'com_myblog'=> 'left-content',
#
'com_fireboard'=> 'content',
#
'com_content'=> 'content-right',
#
'com_frontpage' => 'left-content-right', <--(Joomla 1.0 only)
#
'com_weblinks' => 'left-content',
#
'com_contact' => 'left-content',
#
);
#
?>
|
And you probably want this. You will see I changed the com_fireboard setting.
| Code: |
#
// Use the following option for quick off LEFT and RIGHT positions displaying.
#
//By default
#
'default'=>'left-content',
#
// specify extra options for different components
#
// if you do not write left or right - these positions wont be published
#
// left-right-content | right-left-content | content-right-left | content-left-right
#
// left-content-right | right-content-left
#
// right-content | content-left | left-content | content-right
#
'com_myblog'=> 'left-content',
#
'com_fireboard'=> 'content-right',
#
'com_content'=> 'content-right',
#
'com_frontpage' => 'left-content-right', <--(Joomla 1.0 only)
#
'com_weblinks' => 'left-content',
#
'com_contact' => 'left-content',
#
);
#
?>
|