In the header section, I would like put my logo where the Header text goes... is this possible at all?
Also, how do I move the date from the bottom and put it under or above the title of each post?
In the header section, I would like put my logo where the Header text goes... is this possible at all?
Also, how do I move the date from the bottom and put it under or above the title of each post?
Edit the theme files and move the code that is used to display the date to above that code which displays the title. Yes, its that easy.
Thank you so much. I'll try that.
Do you know how I can insert my logo where the Header text is located?
Go it... no need to respond.
Can you please let m know how you got your logo to display where the header text is located? thx
go into the header.php
then look for line(s): - then insert logo
<header id="branding">
<hgroup class="fleft">
Thanks that did it
I found the lines
<header id="branding">
<hgroup class="fleft">
bit how do you insert the logo?
thanx
X
add a blank line below those tags and insert your IMG tag like this
<header id="branding">
<hgroup class="fleft">
<img src=/wp-content/uploads/XXX.png>
Then save your file
[Please post code snippets between backticks or use the code button.]
i did, but it doesn't work i dont have anymore text title, i just have a suqre indicating there should be an image there...
here's my code :
[Code moderated as per the Forum Rules. Please use the pastebin]
Did you upload the image to the correct folder?
Is the image the correct size and format? Mine is 468 X 130 pixels and works fine
Then save your file
1. That image markup is wrong.
2. Never use relative urls or srcs in WordPress.
i uploaded it from my WP librairy...
my size is a bit smaller thant yours znd is in .jpg...?
Esmi,
so what's the goog image markup?
<img src="full_url_of_image" width="image_width_in_pixels" height="image_height_in_pixels" alt="alternative_text_for_image" />
thanks Esmi logo's in header!
Further question... How do i manage to put it at the right of my text title?
Site url?
Try adding:
#branding .fleft img {
display: inline-block;
float: right;
}
to the bottom of your stylesheet.
the code appears written directly on the page...
did i forget to code something?
Add it to your theme's stylesheet - not the header.php template file!
ok oups...
no changes...
Now try pressing CTRL and F5 simultaneously to view the updated page/site. Or try emptying your browser cache. This should ensure that your web browser fetches a fresh copy of the page rather than serving up an out-dated copy from your own cache.
wouah ok. It's updated now.
have a look it's very close to what i thought.
if you know how to put the logo on the "extreme" right et get it balanced between title and logo i'll owe you a lot... ;)
Try changing:
#branding hgroup {
margin: 20px 0 20px 15px;
width: 450px;
}
to:
#branding hgroup {
margin: 20px 0 20px 15px;
width: 940px;
}
and deleting:
.header-desc {
margin: 25px 20px 10px 0;
min-height: 60px;
width: 468px;
}thanx a lot!
it's starting to look like something!!!
i think i'm gonna reduce a bit my logo so that it's not hiding a bit of blue on th e top of the banner, and i'll be ready to go on my discoverings...
now i should probably go to sleep it's close to 2am here....
thanks again
X
No problem :-)
This feature is available only for PRO Version.
I tried to follow the steps mentioned below but it displays only alternate text. How to get the logo instead of alternate text.
Please help.
<header id="branding">
<hgroup class="fleft">
<img src="full_url_of_image" width="image_width_in_pixels" height="image_height_in_pixels" alt="alternative_text_for_image" />
Can we have a link to the site, and also to the image you are trying to put up there and I'll see what I can do for you.
This topic has been closed to new replies.