One: The url tags (on author comments) always open new windows.
Two: All the image links have borders around them.
Can someone give me HTML codes to solve these? Or is there no way?
This post was last edited on Jul 21,`09 9:04pm
"The only moral it is possible to draw from this story is that one should never throw the letter Q into a privet bush, but unfortunately there are times when it is unavoidable."
-Douglas Adams, The Restaurant At the End of the Universe
That will work if the images are in the html coded parts of the page, yes!
However if he's putting the images in the author's comments (it's not clear where he's got them) then he's stuck with the bbcode tags, where you can't specify things like border. What would need to happen to get rid of the border is figure out which image code in the css it's using, and then apply a border:none to it.
The URL-opening thing sounds like something that's been set in the css too, or at least COULD be. The default ont he web is to open in the same window, so there's something somewhere telling it NOT to do that... if it's in the page code or css it could be removed.
sorry I couldn't give you detailed code, I'm running late here and would need to start looking stuff up. Maybe if you can post a link to a page where it's doing those things, someone might be able to identify the bits of code to change?
Two: All the image links have borders around them.
Add border="0" like so -
<a href="URL"><img src="IMG" border="0"></a>
when you make an image link to something. That should fix it.
Thanks! That worked
skoolmunkee Said: The URL-opening thing sounds like something that's been set in the css too, or at least COULD be. The default ont he web is to open in the same window, so there's something somewhere telling it NOT to do that... if it's in the page code or css it could be removed.
Well, heres the line of code I'm currently using: <link rel="stylesheet" type="text/css" href="http://www.drunkduck.com/gfx/css/global.css">
I did try switching it to <link rel="stylesheet" type="text/css" href="http://www.drunkduck.com/gfx/template_gfx_new/global.css">
And that didn't fix it.
"The only moral it is possible to draw from this story is that one should never throw the letter Q into a privet bush, but unfortunately there are times when it is unavoidable."
-Douglas Adams, The Restaurant At the End of the Universe