OSCOMMERCE SUPPORT CALL 702-453-3332

 

Help - Search - Members - Calendar
Full Version: Removed right column, now want it back - but how?
osCommerce Community Support Forums > osCommerce Online Merchant v2.x > General Support
victoriouspirate
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
If you look at the HTML source for your site, you'll see this:

CODE
   <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:

CODE
<!-- right_navigation //-->
<?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
<!-- right_navigation_eof //-->

Check there.
victoriouspirate
Yes, perfect. Thank you! <3
germ
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:

CODE
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.gif
victoriouspirate
No, please - any advise or feedback is appreciated. I get stuck doing my own design/updates which is not my forte by far... wink.gif

Thank you!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.