Quote Originally Posted by andreitero View Post
Thank you for taking the time. I will try to be more clear:
1. The center column is not perfectly centered between the main wrapper right side border and left column border, it is visible on the main page, it needs moving about 3px to the left. How can i achieve that?

2. In IE i have the same problem as before when hovering mouse over the images in the home page center column.

3. I have changed the links to red now except for this:
Code:
a:hover,#navEZPagesTOC ul li a:hover {
color:red;
background:#fff;
font-weight:700
}
That is not red on mouse hover for some reason.

4. Just above the monthly specials(home page) there is a text box. I want to move that below the featured products. I suspect this will be done from tpl_index_default.php, but not sure.
#1 #2 #3 - open includes/templates/cold_steel/css/stylesheet.css

find the following declaration .centerColumn adjust the margin and padding as necessary.

a:hover remove any reference(s) to background:#fff;


Code:
a:hover,#navEZPagesTOC ul li a:hover {
color:red;
background:#fff;
font-weight:700
}
in this particular instance make sure you include a ; after the font-weight:700 declaration.

#4 - open includes/templates/template_default/tpl_index_default.php
find the following section of code:
PHP Code:
<?php if (DEFINE_MAIN_PAGE_STATUS >= and DEFINE_MAIN_PAGE_STATUS <= 2) { ?>
<?php
/**
 * get the Define Main Page Text
 */
?>
<div id="indexDefaultMainContent" class="content"><?php require($define_page); ?></div>
<?php ?>
move the entire section to the bottom of the page just above the final <div>