
Originally Posted by
hllight
Jettrue:
Where can I make a financial contribution for your efforts?
Your suggestions corrected all issues with the excepiton of removing the light gray area from the right sidebox area.
I found the following in your stylesheet.css file:
#centerColumnWrapper {
background:url(../images/shadowRight.png) repeat-y 100% 0;
width:71em;
}
I changed the setting to "repeat-y 0 0" like the shadowLeft.png thinking that would remove the shading. It did not work. I also changed 71em to 0 and that didn't do anything either. Any suggestions? I suppose I could edit the .png file and make it white, but that is cheating. ;-)
Ah, no, the light gray color is found in the image content_bg.gif, you have to open up the image, and change the color to what you'd like, or if you want it solid white, change #centerColumnWrapper2 to this:
#centerColumnWrapper2{
background: #ffffff;
}
As for your languages box, you can try something like this, add this to includes/templates/your_template/common/tpl_header.php, perhaps right after or before the search header section (<div id="navMainSearch"><?php require(DIR_WS_MODULES . 'sideboxes/search_header.php'); ?></div>):
Code:
<div id="navMainLang"><?php require(DIR_WS_MODULES . 'sideboxes/languages.php'); ?></div>
Then you will probably have to make some adjustments to the stylesheet, and perhaps even includes/modules/sideboxes/your_template/languages.php
Yes, actually open the above file up, and change line 29 from:
Code:
require($template->get_template_dir($column_box_default, DIR_WS_TEMPLATE, $current_page_base,'common') . '/' . $column_box_default);
to
Code:
require($template->get_template_dir('tpl_box_header.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_box_header.php');
There may be more to it than that, but that'll get you going in the right direction.
Bookmarks