Hi,
I am trying to make horizontal image link in my navigation menu. I'm not very good with WordPress, so I was hoping someone may be able to give me an easy fix...
My website is http://www.robotspacebrain.com
I have a text widget in the top navigation that has this:
<a href="http://www.robotspacebrain.com/category/robot/" id="yaprakr"> </a>
<a href="http://www.robotspacebrain.com/category/space/" id="yapraks"> </a>
<a href="http://www.robotspacebrain.com/category/brain/" id="yaprakb"> </a>
and my css style code is this:
a#yaprakr {
width: 100px;
height: 100px;
background-image: url('bicon160.png');
display: block;
text-decoration: none;
margin-right: 150px;
}
a#yaprakr:hover {
background-image: url('ricon160.png');
}
a#yapraks {
width: 100px;
height: 100px;
background-image: url('bicon160.png');
display: block;
text-decoration: none;
margin-left: 150px;
}
a#yapraks:hover {
background-image: url('ricon160.png');
}
a#yaprakb {
width: 100px;
height: 100px;
background-image: url('bicon160.png');
display: block;
text-decoration: none;
margin-left: 150px;
}
a#yaprakb:hover {
background-image: url('ricon160.png');