Space between Div and Image tags [HTML] [SOLVED]
![zow](./ZOW.png)
[ Home ](#)[ About ](#)[ Gallery ](#)[ Help ](#)[ Contact ](#)
![](./white.png)
I've tried a slew of things to no avail, though. Any help on this one?
6 Replies
src="./ZOW.png"
to
src="ZOW.png"
without the leading "./"?
James
here
.nav a {
display: inline-block;
}
In the couple of browsers I tested quickly, that appears to achieve the result you're going for. You can also make them 'display: block;', but then you need to float them.
-James