anders wrote:
>
> Jeg bruger et eksternt stylesheet til at lave rammer omkring billeder. Der
> er så nogle billeder, der skal være uden rammer (pilene der fører til hhv
> næste og forrige billede). Jeg har for hvert enkelt af disse, lokalt,
> markeret "style="border=0px". Det virker fint i IE, men ikke i Netscape
> (hverken 6,2 eller 4,79)...
> Hvordan får jeg fjernet de rammer, så de er væk både i Netscape og IE?
> Hvis nogle vil se nærmere, så gå ind på
www.salmik.hjem.wanadoo.dk, vælg
> "Vaikelud" og klik derefter på et af de små billeder. Så kommer
> forstørrelsen frem med problem pilene...
>
> BODY{
> background-color : transparent;
> background-image : url(background.jpg);
> background-repeat : repeat-xy;
> }
> IMG{
> border : 5px groove silver;
> }
> TABLE {
> font: 12px Arial;
> color : #FFFFFF;
> font-weight : bold;
> }
Half the images are missing, and all of them have a little underscore
at the lower right corner. This is caused by an extra space in the
anchor.
<a href="vaikelud/Setup13.htm">
<img src="New Folder/New Folder/P3039304.jpg" width="50" height="60" alt="" border="0">
</a>
I'm not sure which side of the tag is causing the underscore, but
how about?
<a href="vaikelud/Setup13.htm"><img src="New Folder/New Folder/P3039304.jpg" width="50" height="60" alt="" border=2></a>
for example.
BTW, what's with the frames?
-------------------------------------------
HTML Validation Results
Document Checked
Character encoding: ISO-8859-1
Level of HTML: HTML 4.01 Transitional
Errors and Warnings
Line 6, character 16:
<frameset rows="35,*" frameborder="NO" border="0" framespaci ...
^
Error: there is no attribute ROWS for this element (in this HTML version)
Line 6, character 35:
... eset rows="35,*" frameborder="NO" border="0" framespacing="0 ...
^
Error: there is no attribute FRAMEBORDER for this element (in this HTML version)
Line 6, character 47:
... 5,*" frameborder="NO" border="0" framespacing="0" cols="*">
^
Error: there is no attribute BORDER for this element (in this HTML version)
Line 6, character 64:
... "NO" border="0" framespacing="0" cols="*">
^
Error: there is no attribute FRAMESPACING for this element (in this HTML version)
Line 6, character 73:
... er="0" framespacing="0" cols="*">
^
Error: there is no attribute COLS for this element (in this HTML version)
Line 6, character 76:
... "0" framespacing="0" cols="*">
^
Error: element FRAMESET not defined in this HTML version
Line 7, character 15:
<frame name="topFrame" scrolling="default" noresize src="t ...
^
Error: there is no attribute NAME for this element (in this HTML version)
Line 7, character 36:
... me name="topFrame" scrolling="default" noresize src="topfram ...
^
Error: there is no attribute SCROLLING for this element (in this HTML version)
Line 7, character 55:
... scrolling="default" noresize src="topframe.htm" >
^
Error: NORESIZE is not a member of a group specified for any attribute
Line 7, character 59:
... lling="default" noresize src="topframe.htm" >
^
Error: there is no attribute SRC for this element (in this HTML version)
Line 7, character 74:
... noresize src="topframe.htm" >
^
Error: element FRAME not defined in this HTML version
Line 8, character 41:
... me="mainFrame" src="main.htm">
^
Error: element FRAME not defined in this HTML version
Line 9, character 11:
</frameset>
^
Error: end tag for FRAME omitted; possible causes include a missing end tag, improper nesting of elements, or use of an element where it is not allowed
Line 8, character 3:
<frame name="mainFrame" src="main.htm">
^
start tag was here
Line 9, character 11:
</frameset>
^
Error: end tag for FRAME omitted; possible causes include a missing end tag, improper nesting of elements, or use of an element where it is not allowed
Line 7, character 3:
<frame name="topFrame" scrolling="default" noresize src="t ...
^
start tag was here
Input
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2 <html>
3 <head>
4 <title>Silja Salmistu</title>
5 </head>
6 <frameset rows="35,*" frameborder="NO" border="0" framespacing="0" cols="*">
7 <frame name="topFrame" scrolling="default" noresize src="topframe.htm" >
8 <frame name="mainFrame" src="main.htm">
9 </frameset>
10 <noframes>
11 </noframes>
12 </html>
--
Insider