PDA

View Full Version : Strange unwanted border


Chris Keegan
01-31-2008, 04:48 PM
Hello,

I am putting the finishing touches to my new blog
http://www.chriskeegan.co.uk/blog/

I have a strange unwanted border on my name at the top left of my blog page
I can not see it on Safari but a can see it on Firefox
The file is an interlaced .png file i tried it on .giff and the same thing happened

To get it working i just copied code from another blog....
What did i did wrong?

Here is the code


<div id="header" style="width:100%;">

<div id="logo" style="width:712px;">
<div id="logo_sub">
<a title="click for home" href="index.php"><img src="templates/delicious_v1_1/images/name.png" class="logoimage"></a>
</div> <!-- logo_sub -->
</div> <!-- logo -->

EcoSee
01-31-2008, 04:59 PM
Chris~

You can try two things. First try editing the template style sheet. /templates/delicious_v1_1/styles/light.css
/templates/delicious_v1_1/styles/dark.css

You can try editing the lines that read:


#image-border {
position:relative;
margin:0;
}

To This instead:

#image-border {
position:relative;
margin:0;
border:none;
}


That should take care of the problem. If it doesn't do the trick, you can try editing the code you added from:

<a title="click for home" href="index.php"><img src="templates/delicious_v1_1/images/name.png"

To:

<a title="click for home" href="index.php"><img src="templates/delicious_v1_1/images/name.png border=0"

That should take care of it for you.

Chris Keegan
01-31-2008, 05:09 PM
Got it working thank very much.