Another problem with my theme.

Discussion in 'Blogging' started by JBMedia, Aug 5, 2009.

  1. #1
    Can someone possibly help me find a way to replace the "Sorlenade" title on my page to my own logo I had designed for it? I can't figure out how, and I'm very new with this type of stuff. I appreciate any help.

    Oh yeah the link is at http://www.physioscene.com

    Thanks again.
     
    JBMedia, Aug 5, 2009 IP
  2. kecoa-ngamuk

    kecoa-ngamuk Peon

    Messages:
    40
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
  3. 4chp

    4chp Peon

    Messages:
    163
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Open up the css file style and find and replace

    #logo h1{background: url(images/logo.png) top left no-repeat;
    Code (markup):
    With your logo's name or just upload your new logo to the images folder with name logo.png ;)
     
    4chp, Aug 5, 2009 IP
  4. JBMedia

    JBMedia Active Member

    Messages:
    513
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    80
    #4
    I was going to do what you said 4chp but it tells me the CSS style cannot be edited. It won't let me save the changes, so I'm not quite sure on how to do it.

    And kecoa, I did what you said but when you look at it, my whole logo doesn't show up. Is that because of the dimensions of it?
    Also is there a way I can hide the title description text that shows up?
     
    JBMedia, Aug 5, 2009 IP
  5. 4chp

    4chp Peon

    Messages:
    163
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #5

    Well if you can't edit the file on your server edit it on your local hard drive then upload it, overwriting the other one . The code below will solve your issue with your logo / tag line.

    #logo h1{background: url(images/logo.png) top left no-repeat;
    	text-indent: -9999px;
    	width:585px;
    	height:138px;
    	}
    
    Code (markup):
    For your tag line issue just remove
    <h2><?php bloginfo('description'); ?></h2>
    Code (markup):
    from the header.php file
     
    4chp, Aug 5, 2009 IP
  6. JBMedia

    JBMedia Active Member

    Messages:
    513
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    80
    #6
    When I try to add a new theme to the WP panel though it says it needs to be in a Zip file. So do I need to redownload the old zip I got for the theme, then edit it and then re-archive it to upload it to the site? I'm sorry about all the trouble. chp4 you've been a great help.
     
    JBMedia, Aug 5, 2009 IP
  7. kecoa-ngamuk

    kecoa-ngamuk Peon

    Messages:
    40
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Yes, because in your css size is:
    #logo h1{background: url(images/logo.png) top left no-repeat;
    	text-indent: -9999px;
            width:320px;
    	height:69px;
    	}
    HTML:
    and currently yours: width:585px height:138px, so there is 2 options, changing the css as 4chp suggested so you can still using your current image, or resize your image into:
    width:320px height:69px,
    then replace the current one.
     
    kecoa-ngamuk, Aug 5, 2009 IP
  8. JBMedia

    JBMedia Active Member

    Messages:
    513
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    80
    #8
    Cool thanks. I fixed it up. I appreciate all the help guys really! :) Don't know what I'd do without DP members sometimes haha.
     
    JBMedia, Aug 5, 2009 IP