Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
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 >= 1 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>
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
#1 #2 #3 - open includes/templates/cold_steel/css/stylesheet.css
Thanks a lot Clyde, this solved everything, except for those links, they are still not red on hover, this is how it looks on my stylesheet:
[SCR]a:hover,#navEZPagesTOC ul li a:hover {
color:red;
font-weight:700;
}[/SCR]
With or without this sorted, you have been a fantastic help, thank you very much! :hug:
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
Thanks a lot Clyde, this solved everything, except for those links, they are still not red on hover, this is how it looks on my stylesheet:
[SCR]a:hover,#navEZPagesTOC ul li a:hover {
color:red;
font-weight:700;
}[/SCR]
With or without this sorted, you have been a fantastic help, thank you very much! :hug:
Sorry about the previous post, the code got lost for some reason. Here is the code from my stylesheet controling the hover:
Code:
a:hover,#navEZPagesTOC ul li a:hover {
color:red;
font-weight:700;
}
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
Sorry about the previous post, the code got lost for some reason. Here is the code from my stylesheet controling the hover:
Code:
a:hover,#navEZPagesTOC ul li a:hover {
color:red;
font-weight:700;
}
the a:hover is working correctly.
The only way you would see whether #navEZPagesTOC ul li a:hover is working would be if you were using ez-pages that were using chapters and the table of contents.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
the a:hover is working correctly.
The only way you would see whether #navEZPagesTOC ul li a:hover is working would be if you were using ez-pages that were using chapters and the table of contents.
My mistake, I saw the #navEZPagesTOC in firebug when inspecting the Bicycle and Componentry Guarantee link in my product pages, that's the one i would like to change to have a red hover effect. Thanks again for your patience.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
My mistake, I saw the #navEZPagesTOC in firebug when inspecting the Bicycle and Componentry Guarantee link in my product pages, that's the one i would like to change to have a red hover effect. Thanks again for your patience.
I don't see this link ( Bicycle and Componentry Guarantee link ) when viewing your site.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
I don't see this link ( Bicycle and Componentry Guarantee link ) when viewing your site.
It's on the product pages:
http://lemy.co.uk/silverfox-bullion-bmx-bike-p-161.html
Maybe i'm pushing my luck :oops: , but how do i center the 'other products' link in the manufacturer info sidebox?
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
That link is on an ez-page and should be covered by the a:hover; why its not, I have no idea.
Your second question:
This seems to be some sort of inline style directly in the sidebox and I have no idea how it would be centered.
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
clydejones
That link is on an ez-page and should be covered by the a:hover; why its not, I have no idea.
Your second question:
This seems to be some sort of inline style directly in the sidebox and I have no idea how it would be centered.
Ok, i'm back with another problem :blush:
In IE8 and and FF, the page body is displayed as it should, but in IE7 (and lower, i haven't tested it) the navmainwrapper content is shifting to the right. I have been searching the forum for 3 days and still can't come up with a fix for that. Please help :dontgetit
Re: Cold Steel Template Support Thread
Quote:
Originally Posted by
andreitero
Ok, i'm back with another problem :blush:
In IE8 and and FF, the page body is displayed as it should, but in IE7 (and lower, i haven't tested it) the navmainwrapper content is shifting to the right. I have been searching the forum for 3 days and still can't come up with a fix for that. Please help :dontgetit
If you mean the dropdown menu then you will need to look at the css for for that mod and probably have to adjust the padding and margin settings.
OR
write a specific ie7 stylesheet to adjust the width of the dropdown menubar