Issue
i am new in CSS so sorry if this question is just stupid or too simple but i just dont know how to do it.
I need to place a button over the image, how it should looks:
You see there a blue button "Kopit" Thats IT! i style this thing already to my website but as one single image so my code looks like:
CSS:
#shop{
background-image: url("images/shop_bg.png");
background-repeat: repeat-x;
height:121px;
width: 984px;
margin-left: 20px;
margin-top: 13px;
}
#shop .content{
width: 182px; /*328 co je 1/3 - 20margin left*/
height: 121px;
line-height: 20px;
margin-top: 0px;
margin-left: 9px;
margin-right:0px;
display:inline-block;
}
My HTML:
<div id="shop">
<div class="content"> Counter-Strike 1.6 Steam <a href="#"><img src="images/CSsteam.png"></a></div>
<div class="content"> Counter-Strike 1.6 Steam <a href="#"><img src="images/CSsteam.png"></a></div>
<div class="content"> Counter-Strike 1.6 Steam <a href="#"><img src="images/CSsteam.png"></a></div>
<div class="content"> Counter-Strike 1.6 Steam <a href="#"><img src="images/CSsteam.png"></a></div>
<div class="content"> Counter-Strike 1.6 Steam <a href="#"><img src="images/CSsteam.png"></a></div>
</div>
Is here anybody who can help me to style that button as a different element?
Thanks a lot for reading this post.
Solution
If I understood correctly, I would change the HTML to something like this:
<div id="shop">
<div class="content">
<img src="http://placehold.it/182x121"/>
<a href="#">Counter-Strike 1.6 Steam</a>
</div>
</div>
Then I would be able to use position:absolute
and position:relative
to force the blue button down.
I have created a jsfiddle: http://jsfiddle.net/y9w99/
Answered By - TryingToImprove
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.