Forum Moderators: not2easy
Although it looks great, it only displays as text. I'm thinking the problem is with my CSS setup, maybe I just can't see it?
Here's what I'm using for my text link over a background image:
<div>
<a href="#" class="ver10"><h2>Subscribe</h2></a></div>
Here's the CSS code that applies to this line:
h2 {
font-family: Times, Times New Roman;
font-size: 14px;
text-decoration: none;
color: #000000;
position: relative;
top: 25%;
text-align: center;
}
.ver10 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
text-decoration: none;
color: #000000;
}
any ideas?
position: relative;
top: 25%;
...it shouldn't matter, but mabye Safari doesn't like having a positioned element nested in a link.
Or mabye leave your CSS as is and change the markup to...
<div>
<h2><a href="#" class="ver10">Subscribe</a></h2></div>
Jordan