wordpress theme need to change title

Discussion in 'HTML & Website Design' started by dadaas, Apr 3, 2008.

  1. #1
    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
     
    dadaas, Apr 3, 2008 IP
  2. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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>
     
    wd_2k6, Apr 3, 2008 IP
  3. dadaas

    dadaas Well-Known Member

    Messages:
    1,298
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    160
    #3
    thanks mate, it helped me allot
     
    dadaas, Apr 3, 2008 IP
  4. wd_2k6

    wd_2k6 Peon

    Messages:
    1,740
    Likes Received:
    54
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Nice one glad it worked
     
    wd_2k6, Apr 3, 2008 IP