Guys i have an annoing border around my logo too but can't find any way to remove it ! It's there in few days ago (after blogger updated. ... something) . Any ideas how to remove it? url: http://mobers.org
Add this to your main css style sheet: } a img { border-style:none; text-decoration: none; } Code (markup):
Can you tell me where exactly i should put that? If you need i'll send you the whole template to you on PM
Pretty much anywhere in the style tag (place it in the line just after the end of it's declaration to avoid interfering with anything else). Alternatively, you could put border=0 in the image tag itself. An example would be: <a href="myblog.com"><img src="logo.gif" border=0></a> Code (markup): Note: I wrapped it in "a href" (link) tags because I assume your logo is a link to your homepage, as this is the main cause of that ugly border around the image.
I couldn't find my logo link in the whole templeate code (it's added in another way by AP) so i cant use the second way. I'll try the first way (but i'm afraid i can mess up the whole thing when i'm not shure where exactly should i put this).
From line 45 to 64 in your html code - is css style for your logo. Under this: #site-name { font-size:26px; color:#fff; text-transform:uppercase; padding:16px 0; } ----------------------- Place this: #site-name img { border:0px solid #fff; }
Follow this instruction: 1) Login to your blogger account 2) On the Dashboard, click "layout" 3) Click "Edit HTML" on top left menu 4) A code window should come up 5) On the code window scroll down to /* ---( page defaults )--- */ 6) Find: body { margin: 0; padding: 0; font-size: small; text-align: center; color: $textcolor; background: #e0e0e0; } Code (markup): 7) Paste this code after it: a img { border-style:none; text-decoration: none; } Code (markup): So it should look like this when done: body { margin: 0; padding: 0; font-size: small; text-align: center; color: $textcolor; background: #e0e0e0; } a img { border-style:none; text-decoration: none; } Code (markup): 7) Click "save template" that should do it
Thank you guys! And mostly thanks to @turrant! It worked ! I love you man You may now close this topic