i am using Monoblock glype theme for my proxy which is www.evilsurfer.info but am having trouble putting up my logo which i want in the orange part in the header. can anyone help me with a code for it? any help is appreciated thank you.
<div id="logo"> <h1><a href="http://www.evilsurfer.info" title="Monoblock - Glype">Monoblock - Glype</a></h1> <p>Without A Trace</p> </div> Code (markup): I think that's the spot
Or alternatively make this change to your stylesheet; Current: #header { width: 940px; height: 128px; margin: 0 auto; } Code (markup): To... #header { width: 940px; height: 128px; margin: 0 auto; background:url(images/logo.jpg) top left no-repeat; } Code (markup): Assuming you have a logo image that is located in an 'images' folder called logo.jpg, of course. This wouldn't be clickable though so you could also go for this edit to your HTML; Current: <div id="logo"> <h1><a href="http://www.evilsurfer.info" title="Monoblock - Glype">Monoblock - Glype</a></h1> <p>Without A Trace</p> </div> Code (markup): To... <div id="logo"> <h1><a href="http://www.evilsurfer.info" title="Monoblock - Glype"><img src="images/logo.jpg" alt="Evil Surfer" class="logo" /></a></h1> </div> Code (markup): Then add this to your stylesheet; img.logo { border:0; } .logo { float:left; } Code (markup):
hi Thanks for that info. I have often wanted to place an item (text or image) in a specific place on my websites and usually end up manually using the <div> codes with specifically stating its locatoon (right, top etc) via Wordpad.
No problem. If it worked for you feel free to add to my reputation here (by clicking the scales icon on the top-right of my post).