crazy_bout_you1
11-21-2003, 01:37 AM
can anyone tell me how to make the box around my linked image disappear?? it's a bmp that i made for my site and it has a white box around it. any help??
|
View Full Version : picture links crazy_bout_you1 11-21-2003, 01:37 AM can anyone tell me how to make the box around my linked image disappear?? it's a bmp that i made for my site and it has a white box around it. any help?? Dude128 11-21-2003, 02:38 AM just add border="0" to the <img> tag, like so: <img src="yourimage.gif" border="0"> also, I would caution against the use of .bmp images. they tend to be huge and really slow loading. it would probably be better if you could convert any .bmp images you have to another format such as .gif, .jpg, or .png crazy_bout_you1 11-21-2003, 04:28 AM this question is about text links now. before you click on the link, it's blue. after you click it's red. i've done the alink="#ffffff" and the vlink="#ffffff" but it doesn't work. thanks :) Rosey 11-21-2003, 05:52 AM You want all of them white? alink="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" Hope that helps. pb&j 11-21-2003, 04:38 PM can you provide a link to the page in question? there may be other coding that is interfering with your link coding. crazy_bout_you1 11-24-2003, 12:17 AM thanks for the help guys...i checked it out again and had forgotten to add link="ffffff" along w/ my alink and vlink. but, if you want the link to my site anyways, its http://www.geocities.com/i_love_gc11/index.html i'm just starting out, but if you have anymore suggestions, they would be appriciated :) pb&j 11-24-2003, 05:55 AM as suggestions, using your "home.html" as an example... 1. the colors in your css should not have quotes on them. 2. you should have only one starting BODY tag. 3. your link and font colors could all be done using css and should only be declared once. 4. font size values used are invalid. try this... <html> <head> <title> where i lay my head </title> <style type="text/css"> body { scrollbar-arrow-color:#ffffff; scrollbar-track-color:#000000; scrollbar-face-color:#000000; scrollbar-highlight-color:#ffffff; scrollbar-3dlight-color:#000000; scrollbar-darkshadow-color:#ffffff; scrollbar-shadow-color:#000000; color:#ffffff; font-size:8px; font-family:verdana; background-color:#000000; } a {color:#ffffff;} a:hover {cursor:crosshair;} </style> </head> <body> <center><img src="head.gif" alt="head" height="75" width="450"></center> <br><br> well hm...for now there's not a lot here. but there will be...eventually. if you came looking for all my pages, here is where you must stop for now. i have to. congratulate me on getting this far. <br><br> <center> <ul> <li><a href="http://www.imood.com/query.cgi?email=limited_edition7@yahoo.com"><img src="http://moods.imood.com/display/email=limited_edition7@yahoo.com/fg=ffffff/trans=1" alt="The current mood of limited_edition7@yahoo.com at www.imood.com" border="0"></a><br> <li><a href="http://geocities.yahoo.com/gb/sign?member=i_love_gc11">Sign Guestbook</a><br> <li><a href="allaboutme.html">all about me</a><br> <li><a href="itsallforyou.html">it's all for you</a><br> <li><a href="blog.html">a place inside my mind</a> </ul> </center> </body> </html> |