hardwiredtemplates:
Ok some strange things are happening and I've attempted to fix this many times, and many methods. none seem to help.
- The color of the footer links is inconsistent (some are black some are gray)
- The left padding disappeared for only the black links (Seems these links are not effected by the code at all). I am pasting my stylesheet_footer_menu.css file below for reference.
- If I wanted to move the link "Terms of Use" under the title "Important links" to the "Quick Links" how could i do it?
- I would also love to change the font style of the links but Can't seem to get it regardless of what I do to the file:frusty:
Finally when I change this line from this:
li a:link {color: #666;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
To this:
li a {color: #666;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
Few things happen:
1.The footer links colors and padding are all the same (all black)
2.regardless of the color value (#666) it's always black:huh:
1. The color of the footer links is inconsistent (some are black some are gray)
2. The left padding disappeared for only the black links (Seems these links are not effected by the code at all). I am pasting my stylesheet_footer_menu.css file below for reference.
open stylesheet_footer_menu.css and make the highlighted changes. This should make things consistent.
li a:link {color: #666;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
li a:visited {color: #666;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
li a:hover {color: #666;background:#FFBD3B;text-decoration: underline;}
li a:active {color: #666;font-size:9px;margin:0;padding-left:1em;padding-bottom:.3em;display:block;}
3. If I wanted to move the link "Terms of Use" under the title "Important links" to the "Quick Links" how could i do it?
First: open includes/languages/comstock/english.php
find the following declaration and make the highlighted change
define('BOX_INFORMATION_CONDITIONS', 'Terms of Use');
Save the file and upload to your server
Second: open includes/languages/english/extra_definitions/comstock/footer_menu_defines.php
find the following define statement
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
AND move it to the bottom of this section as shown by the highlight
/BOF Menu Column 1 link Definitions/
Define('TITLE_ONE', '<li class="menuTitle">Quick Links</li>');
Define('HOME', '<li><a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">' . HEADER_TITLE_CATALOG . '</a></li>');
Define('FEATURED','<li><a href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a></li>');
Define('SPECIALS', '<li><a href="' . zen_href_link(FILENAME_SPECIALS) . '">' . BOX_HEADING_SPECIALS . '</a></li>');
Define('NEWPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">' . BOX_HEADING_WHATS_NEW . '</a></li>');
Define('ALLPRODUCTS', '<li><a href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' .CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></li>');
Define('CONDITIONS','<li><a href="' . zen_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a></li>');
/EOF Menu Column 1 link Definitions/
Save the file and upload to your server
*4. I would also love to change the font style of the links but Can't seem to get it regardless of what I do to the file:frusty:
*
I'm guessing you want to change the "font family" by default the font-family is set with the following "Geneva, Arial, Helvetica, sans-serif"
To change that you will have to decide which font(s) you want to use for the links and then set them as follows:
open the stylesheet_footer_menu.css and make the highlighted changes in the following declaration: Please note the fonts listed are only for demo purposes; You will need to select your own fonts.
#navSuppWrapper {
border:1px solid #ccc;
margin: 0 auto;
padding: 0;
background:none;
font-weight: bold;
color: #666;
width: 1000px;
height: 116px;
font-family: "Times New Roman", Times, serif;
}