Having a problem targeting certain div’s…
I basically have one div targeting the twitter icon like this with the margin values to put it exactly where I want it. Than have another div for facebook but that doesn’t do anything.
Html
<div id="twitter">
<li><a href="#"><span><img src="http://tycoontalk.freelancer.com/images/twitter-bird.png" /></span></a></li>
</div>
css
#twitter {
float:left;
position: absolute;
margin: -508 60 50 1025;
}
But than my facebook div isn’t doing anything.
html
<div id="facebook">
<h3<<li><a href="#"><span><img src="http://tycoontalk.freelancer.com/images/facebook-icon.png" /></span></a></li>
</div>
css
#facebook {
float:left;
position: absolute;
margin: -708 160 50 1125;
}
Why can I not target this div like I did with the twitter div?
View full post on Tycoon Talk
certain, divs, having, Problem, Targeting