The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
A part of my .css file is this...
Code:
.navigation_text {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #F8F8FF no-repeat top left;
}
Code:
<div class="navigation_text"><strong>Website Homepage:</strong><br />Click <a href="http://www.website.com/index.html">here</a> to view our<br />homepage.</div> Not the links, or text, but background... Yes, I'm just learning CSS.
|
|
#2
|
||||
|
||||
|
Code:
<style type="text/css">
.navigation_text {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #F8F8FF;
}
.navigation_text_hover {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #FFFFFF;
}
</style>
<div class="navigation_text" onmouseover="this.className = 'navigation_text_hover'" onmouseout="this.className='navigation_text'"><strong>Website Homepage:</strong><br />Click <a href="http://www.website.com/index.html">here</a> to view our<br />homepage.</div>
}
|
|
#3
|
|||
|
|||
|
It's not working...
|
|
#4
|
||||
|
||||
|
Wow, really? Do you have javascript turned off or something? Because the "onmouseover" and "onmouseout" properties are reliant on javascript...
Try this instead: Code:
<style type="text/css">
.navigation_text {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #F8F8FF;
}
.navigation_text:hover {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #FFFFFF;
}
</style>
<div class="navigation_text"><strong>Website Homepage:</strong><br />Click <a href="http://www.website.com/index.html">here</a> to view our<br />homepage.</div>
|
|
#5
|
|||
|
|||
|
Okay, sorry, the first one worked, but when you hover it, then when you move your mouse away, it stays white. I want it to go back to normal when you move.
--------------- Added [DATE]1235437700[/DATE] at [TIME]1235437700[/TIME] --------------- edit: nvm, it works now! thanks! |
![]() |
|
|
| X vBulletin 3.8.12 by vBS Debug Information | |
|---|---|
|
|
More Information |
|
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|