View Full Version : Karma points for answering newbie question!
cmoffett
07-09-2007, 11:01 AM
Here it is folks. Get those points now!
My problem. I've got a simple text link. But on rollover it goes blank.
Here's the code:
<p>Click <a href="AudioCourse.html"=>here</a></p>
Here's the page:
http://meditation-comfort.com/FreeAudioLesson.html
Any ideas? Could something in my CSS be doing this? Or am I missing something obvious?
**********BONUS ROUND*************
I'd like to hide this page so only those who fill out a form can go there.
How do I do this? Or can you point me to a resource on this?
Thanks for any help!
bobdog
07-09-2007, 11:43 AM
You could try adding an A and A: hover to the css style like this:
A { color: #000000; text-decoration: none; }
A:HOVER { color: #000000; text-decoration: underline; }
And you could tidy up the css by putting all of the classes in one <style> tag
"Hiding" the page gets a little more complicated. You would have to put it in a directory, password protect it, and to get access the user would have to fill out a form and choose a user name and password, have the form write it to .htaccess.
There are several scripts for this, try google it or hotscripts.com
cmoffett
07-09-2007, 12:06 PM
Unfortunately adding the A and A: Hover didn't work. It is still blank on hover. What did you mean by putting all the classes in one style tag?
Thanks for the advise on hiding the page. Is there a way to just hide it from search engines? I don't need tight security, I just don't want people landing on it directly.
Thanks!
bobdog
07-09-2007, 04:58 PM
Ah, I see. It is already defined somewhere else.
Find this:
/*********PAGE LINK STYLES********/
#columnwrapper a:hover, #columnwrapper a:active, #columnwrapper a:focus,
#footer a:hover, #footer a:active, #footer a:focus {
color: #FFFFFF;
text-decoration: none;
}
Replace with this:
/*********PAGE LINK STYLES********/
#columnwrapper a:hover, #columnwrapper a:active, #columnwrapper a:focus,
#footer a:hover, #footer a:active, #footer a:focus {
color: #0000FF;
text-decoration: none;
}
That should fix it...
As for google indexing that link and getting a actual ranking, not likely. I'd just leave it as is.
cmoffett
07-09-2007, 05:58 PM
All Karma points go to bobdog!
Thanks! That did it.
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.