Hi everyone,
I'm having a very annoying time configuring the absoluteflush template, whenever I hide the width resizer and set the default width to wide it screws up. (cookies are cleared and ctrl + F5 after each code update). So as default:
This:
| Code: |
// ***************************************************
// Change this variable below to configure the template
// ***************************************************
$menu_type = $this->params->get('menu_type'); // suckerfish | module
$menu_name = $this->params->get('menu_name'); // mainmenu by default, can be any Joomla menu name
$use_colorswitcher = $this->params->get('use_colorswitcher'); // Show Color Switcher: yes | no
//** If no, then what would you like the default color to be?
$default_color = $this->params->get('default_color'); // Default Color: blue | red | green | pink | orange
$show_fontresizer = $this->params->get('show_fontresizer'); // Show Font Resizer: yes | no
//** If no, then what would you like the default font size to be?
$default_fontsize = $this->params->get('default_fontsize'); // Default Font Size: mediumText | largeText | xLargeText
$show_sidebarswitcher = $this->params->get('show_sidebarswitcher');// Show Sidebar Switch: yes | no
//** If no, which side should the sidebar be displayed on?
$default_sidebarposition = $this->params->get('default_sidebarposition'); // Sidebar Position: left | right
$show_widthresizer = $this->params->get('show_widthresizer'); // Show Width Resizer: yes | no
//** If no, what should the default width be?
$default_width = $this->params->get('default_width'); // Default Width: narrow | wide
$show_helpicon = $this->params->get('show_helpicon'); // Display Help icon: yes | no
$show_displayoptions = $this->params->get('show_displayoptions'); // Show Display Options: yes | no
// *************************************************
|
Returns this:
But changing the code to remove the width resizer and set default to wide:
| Code: |
// ***************************************************
// Change this variable below to configure the template
// ***************************************************
$menu_type = $this->params->get('menu_type'); // suckerfish | module
$menu_name = $this->params->get('menu_name'); // mainmenu by default, can be any Joomla menu name
$use_colorswitcher = $this->params->get('use_colorswitcher'); // Show Color Switcher: yes | no
//** If no, then what would you like the default color to be?
$default_color = $this->params->get('default_color'); // Default Color: blue | red | green | pink | orange
$show_fontresizer = $this->params->get('show_fontresizer'); // Show Font Resizer: yes | no
//** If no, then what would you like the default font size to be?
$default_fontsize = $this->params->get('default_fontsize'); // Default Font Size: mediumText | largeText | xLargeText
$show_sidebarswitcher = $this->params->get('show_sidebarswitcher');// Show Sidebar Switch: yes | no
//** If no, which side should the sidebar be displayed on?
$default_sidebarposition = $this->params->get('default_sidebarposition'); // Sidebar Position: left | right
[b]$show_widthresizer = $this->params->get('no'); // Show Width Resizer: yes | no
//** If no, what should the default width be?
$default_width = $this->params->get('wide'); // Default Width: narrow | wide[/b]
$show_helpicon = $this->params->get('show_helpicon'); // Display Help icon: yes | no
$show_displayoptions = $this->params->get('show_displayoptions'); // Show Display Options: yes | no
// *************************************************
|
returns this:
So:
- the header disappears
- the whole page stretches to fit 100% of the browser window
- the containing div for the opening article on the front page moves above the left nav menu
- the menu color has switched from the default green to only the home button being green, and the rest being blue.
A bit strange no?
The issue occurs on both FF and IE7. A live demo of the broken site can be found here:
REMOVED
Thanks in advance for any help!