Header doesn’t show up?
-
Hi, I’ve paid for a annual subscription to customize my CSS. I’ve altered my blog to my needs but my custom header isn’t showing up at all, unless if I turn on firefox’s Web Developer (CSS>edit css it shows up)
Here’s my blog link anyway: http://www.robbox.wordpress.com
The blog I need help with is: (visible only to logged in users)
-
Thanks for the link. I’m still in abit of trouble with it though.
I have uploaded the header as a URL: http://robbox.files.wordpress.com/2009/03/header16.jpg
I just don’t know where ‘sacredpath’ meant to have put it. Where is between the parentheses? I tried embedding the URL into the coding but had no luck with it.
-
-
There’s very little support for CSS in the forum; you are essentially on your own. I’m assuming it’s somewhere in the Header code, somewhere there’s a spot for a jpg. Other than that, I can’t help you.
-
@robbox, to to #masthead in your CSS and replace the relative URL between the parenthesis (images/masthead.jpg) with your URL. I’ve included only partial code below:
This is what is there now:
#masthead { background:transparent url(images/masthead.jpg) transparent url(images/masthead.jpg) repeat scroll 0 0;And yo will want it to look like this:
#masthead { background:transparent url(http://robbox.files.wordpress.com/2009/03/header16.jpg) transparent url(images/masthead.jpg) repeat scroll 0 0; -
Hi to everybody. I tried the same you told to robbox but I still have the same problem. What can I do?
This is the code I have introduce:#header {
border-bottom:1px black solid;
height:140px;
width:100%;
background-color:#73a0c5;
url(http://mediossociales.files.wordpress.com/2009/04/cabecera-blog-animada-v2-gr.gif)repeat-y scroll center center;
margin:0 auto;
padding:0;
}ahd this is the url of my blog:
http://mediossociales.wordpress.com/
Thank you very much.
-
You’ve put the header URL in the wrong place (background color). It should go here:
#headerimg { background-image:url(http://mediossociales.files.wordpress.com/2009/03/cabecera-blog-animada-v2-gr2.gif); }And you need to remove it from “background” also.
-
-
-
- The topic ‘Header doesn’t show up?’ is closed to new replies.