victoriouspirate Posted December 20, 2007 Posted December 20, 2007 Some time ago I removed the entire right nav column but I can't remember how... after some time searching forums I've come up short. It's not a matter of adding code to column_right.php, it's somewhere else - does anyone know where? www.victoriouspirate.com Thanks thanks thanks thanks thanks
germ Posted December 20, 2007 Posted December 20, 2007 If you look at the HTML source for your site, you'll see this: <td width="150" valign="top"><table border="0" width="150" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <!-- right_navigation_eof //--> </table></td> This should also appear in your /catalog/index.php file in order for code in column_right.php to show up: <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> Check there. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
victoriouspirate Posted December 20, 2007 Author Posted December 20, 2007 Yes, perfect. Thank you! <3
germ Posted December 20, 2007 Posted December 20, 2007 Glad it worked for you, Ma'am. I was noticing on your site how the links change to the same color as the background when the cursor passes over them. If you change to this code in your stylsheet.css, your visitors would be able to see what they're clicking on more readily: A.headerNavigation:hover { color: #C0C0C0; } A:hover { color: #FF00FF; text-decoration: underline; } The only things I've modified in those code segments is the color attribute. Color is always subject to personal taste, so pardon me if I've overstepped my boundries... :blush: If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
victoriouspirate Posted December 20, 2007 Author Posted December 20, 2007 No, please - any advise or feedback is appreciated. I get stuck doing my own design/updates which is not my forte by far... ;) Thank you!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.