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.
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
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?
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
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.
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.
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.