Check this weird wordpress tempalte: http://www.pokerlose.com/ ok now how the hell can i change that wordpress theme text and another wordpress theme i look everywhere and i have no idea where to change it, im so desparate that i would even like to remove it, please check it out and help me. p.s. i will give it positive to you
Hey, It's not text, it's an image. To remove it you need to open up your stylesheet, which is /themes/langit-10/style.css OK now the part where this picture is defined inside this file is here: #logo h1 { width:356px; height:85px; background:url(images/logo.jpg) no-repeat center top; display: block; } #logo h1 a { width: 356px; height: 85px; display: block; background: url(images/logo.jpg) no-repeat center top; } Code (markup): /images/logo.jpg is the picture of the text you want to get rid of. So you can either choose to put another picture in it's place, or put text in it's place. If you want to put another image in it's place simply change url(images/logo.jpg) to the location of your new image. If you want to have text in it's place then you need to open header.php and add the text inside this DIV: <div id="logo"> TEXT HERE </div>