logo header
-
Hi. My blog is http://olalaboutique.com/ and I´m using “bueno” theme.
I want to change the header to a logo I have. The URL of the image is http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta-01.jpg and the size 653 x 314 pixels.
Can you help me with this?
The blog I need help with is: (visible only to logged in users)
-
Your logo is way too large in my opinion, but here it is. I added a black background so that there isn’t a bunch of blank space on each side of it.
#logo { background: url("http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta-01.jpg") no-repeat scroll center top #000000; height: 314px; width: 940px; } .site-title a:link, .site-title a:visited { display: none; } -
The above of course assumes you are wanting to replace the site title with the logo, not the header image you already have.
-
Thanks, sacred path, it worked great. I already reduced the size of it.
There is a way to link that image to “home”?
-
That is a little bit of a chore. You have to create a blank transparent PNG image the exact size of the header image and then put it into a text widget and link it to your home page and then use CSS positioning to move it up and over the top of the logo image.
If you want to do that we can help with the positioning. Just get the blank image into a text widget and linked and let us know.
-
I changed the theme to Coraline, can you help me with the logo again?
The URL of the file is: http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta-03-blanco.jpg
And the size: 225 × 106
Thanks.
-
This will do it for you.
#site-title a { margin-left: -9999px; } #site-title { background: url("http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta-03-blanco.jpg") no-repeat scroll center top transparent; height: 106px; } -
Thanks, sacred path. It worked, again.
I want to do the home page linking in the logo.
The PNG image is http://olalaboutique.files.wordpress.com/2011/10/logo_home.png
How do I put it into a text widget? I put one in the side bar, but I dont think thats what you talked about.
-
You have to insert the image into a text widget and link it to your site home page and then we can move it up and over your logo. Here is the code to put into the text widget. Put the text widget at the top of the sidebar so it is easy for me to find.
<img alt=”” src=”http://olalaboutique.files.wordpress.com/2011/10/logo_home.png” />
-
Forgot my code tags, use the following in the text widget.
<a href="http://olalaboutique.com/"><img alt="" src="http://olalaboutique.files.wordpress.com/2011/10/logo_home.png" /></a> -
-
-
Add this to the bottom of your custom CSS.
#container { position: relative; } #text-5 { left: 285px; position: absolute; top: 15px; } -
-
-
I want the logo to change to another color, when the mouse is over it. I think its called hover. I already upload the image, its URL is http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta_10_color.jpg
Can you help me?
-
-
Without completely redoing everything this is about the best I can do. Add this to your CSS. Also, it would be much better if you saved the original for the hover as a PNG. JPG on this type of image will make them fuzzy on the edges.
#text-5 img:hover { background: url("http://olalaboutique.files.wordpress.com/2011/10/olala-tarjeta_10_color.jpg") no-repeat scroll center 13px white; } -
It does get fuzzy in the edges, even with the PNG image. It doesn´t matter, it isn´t that important.
I will like to add a grey background only in the top of the blog, that starts in the top and ends in the grey line below the logo. Can you help me with that?
-
The problem is your logo has a white background. You will have to redo it with a transparent background and save it as a PNG, upload that one and then replace the URL in #site-title.
Add the following for the grey background to the header area. Edit the “grey” color as desired
#masthead { background-color: grey; } #site-description { display: none; }
- The topic ‘logo header’ is closed to new replies.