Help - Search - Members - Calendar
Full Version: Changing Font Color On Mouse Over For
MonsterSmallBusiness Forums > MonsterCommerce > How do I?
robert
If you go to our site (CLICK) you will see that when you put your mouse over the Category links the color changes to red.

This does not happen for the Custom links under "Shopping Cart." (This is left side custom navigation html.)

I know how to change the font color on mouse over, but not without using the <HEAD> </HEAD> commands. We have been advised that we should not include <html>, <head> or <body> in our codes.

I'm guessing the answer involves something to do with that style sheet, but I'm not quite sure what to put into it or where.

Any advice?
ForumAdmin
yeppers. You guessed right. CSS is in the house!

put this at the top of your custom left navigation, before everything else:
HTML
<style>
a.customlink {color:#000000}
a.customlink:hover {color:#FF0000}
</style>


You'll then call that class in the link like this:
HTML
<a href="test.html" class="customlink">test link</a>


Hope that helps. biggrin.gif
robert
Ultrashock,

Does the first set of code really go into the custom left navigation file or did you mean to say that it should go into the CSS file?
ForumAdmin
nope... don't stick it in the CSS file. Put it in the top of the left navigation. If putting that bit doesn't work at the top of the left navigation, it will definitely work at the top of the 'top of page editor'. smile.gif
robert
Ultrashock, it would seem that the code has to be in the Top of Page html field to work.

Quick question...

This link empties a cart without giving a warning ("Are You Sure That You...") http://www.yourdomain.com/index.asp?PageAction=CLEARCART

If you go to "View Cart" and then click on the "Clear Cart" button you get the warning ("Are you sure...").

What is the link that we should use if we want the "Clear Cart With Warning" effect?
robert
I put a tech support ticket in. I'll share the answer when I get it.
Bittersweet
index.asp?PageAction=CLEARCART


Is the item to clear your cart.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.