Click to See Complete Forum and Search --> : line spaces
toorudez
01-16-2003, 11:16 AM
I am using a web page for a graphical directory listing of a particular folder on our server. When I use graphics to display the directory structure, there is a small white space in the vertical spacing of the graphics. The directory listing would look a lot better if this white space was removed. Is there a way to remove this white space?
Zach Elfers
01-16-2003, 03:33 PM
<img hspace="0" vspace="0">
should do it.
Are these images in a table?
toorudez
01-16-2003, 04:06 PM
nope..
Well, how is the page structured then? Could you perhaps provide an URL or at least describe what you've got? crystal balls don't come cheap, you know. :(
toorudez
01-16-2003, 04:24 PM
unfortunately, the page is on our intranet, so there is no link to it. This link is similar to what i've done, but without the tables. http://www.cha.ab.ca/About+Us/Sitemap.htm
As well, I have graphics along the sides, joining the folders in a way similar to the lines in WIndows Explorer. Unfortunately, on each line, there is a gap between the top and bottoms of the graphics.
Stefan
01-16-2003, 07:50 PM
Originally posted by toorudez
unfortunately, the page is on our intranet, so there is no link to it. This link is similar to what i've done, but without the tables. http://www.cha.ab.ca/About+Us/Sitemap.htm
As well, I have graphics along the sides, joining the folders in a way similar to the lines in WIndows Explorer. Unfortunately, on each line, there is a gap between the top and bottoms of the graphics.
:confused:
Could you perhaps post an image clearly showing the issue you speak of, becuse I can't see it.
I don't understand either. This page uses tables but the real one doesn't. So what does it use? A list? CSS positioning? All we know is that you have a page with several images in it. :confused:
toorudez
01-17-2003, 11:22 AM
sorry about the lack of discription. This is the basic layout of the page:
<img ...><img ...><a href ...>text
<img ...><img ...><a href ...>text
<img ...><img ...>
<img ...><img ...>
<img ...><img ...><a href ...>text
etc. for the whole page. The only differences would be the number of images before the text.
But, I think I found the problem (the font I am using is slightly larger than the images:rolleyes: ).
Now I have two other questions.
1. When I have the following, I get a small amount of white space between the images:
<br>
<img ...>
<br>
<img ...>
But when I do this:
<br>
<img ...><br>
<img ...>
there is no white space??? just curious about this.
2. I want to use CSS and set the style for the images in the page, to reduce the amount of text used in the page. Are there specific tags that i should be using?