November 20, 2008
In this tutorial we'll learn how to move (change the position) of the Date in Blogger. We will move it UNDER (below) the Post Title (by default, it's ABOVE it).
We'll have to tweak the HTML code a bit. Until Blogger provides automated way of doing this....And I hope it will.If you're ready, let's do it. First thing is backing up your Blogger template.
I'll show you 2 ways of doing this. I suggest to follow the example 1. If you'll have problems, then try with example 2.
1. Go to:
DASHBOARD ► LAYOUT ► EDIT HTML ► click on Expand widget templates in the upper right corner. Locate the following part of code:
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>
...CUT it, and paste into Notepad (windows) or TextEdit (Mac)..<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>
Now, you have to find this part of the code:<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
...and PASTE the code (you've copied to Notepad/TexEdit) UNDER (below) it, so it will look like this all together:<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>
...click on Preview button to see is everything all right, and if it is, Save.<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<b:if cond='data:post.dateHeader'>
<h2 class='date-header'><data:post.dateHeader/></h2>
</b:if>
That's it. Now, we'll see how can we adjust the margins of the date to lose the gap between Post title, and to gain some between content. In LAYOUT ► EDIT HTML ► find the CSS style for the date:
h2.date-header {
margin:1.5em 0 .5em;
}
...we'll change it into this:margin:1.5em 0 .5em;
}
h2.date-header {
margin:.5em 0 1.5em;
}
...in pink, decreasing the top margin, we've "pulled" the date up..margin:.5em 0 1.5em;
}
...in green, increasing the bottom margin, we've gained some space between date and content..
2. Read this tutorial only if the example 1 is not working for you....
Go to:
DASHBOARD ► LAYOUT ► EDIT HTML ► click on Expand widget templates in the upper right corner...
Read the complete tutorial...
CSS STYLE
Insert the code (in pink) ABOVE the existing code in template (in white):
#mydate {
margin:1.5em 0 .75em;
font:$headerfont;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.2em;
color:$sidebarcolor;
}
.date-header {
display:none;
}
]]></b:skin>
</head>
...I've copied the same date style as it was before (default one). You can customize it, of course (change font size, weight, margins, color, alignment...)margin:1.5em 0 .75em;
font:$headerfont;
line-height: 1.4em;
text-transform:uppercase;
letter-spacing:.2em;
color:$sidebarcolor;
}
.date-header {
display:none;
}
]]></b:skin>
</head>
...I've also hidden the default position of Date...
PLACING A "DIV" FOR DATE
Using CTRL + F for easier searching, locate the following part of code:
<b:includable id='post' var='post'>
<div class='post hentry'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
....your code may be a bit different (like the part in blue), but the procedure is the same.<div class='post hentry'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
Next thing is to add the following line of code:
<div id='mydate'><data:post.dateHeader/></div>
....we have to place it BELOW the upper part of code, so it will look like this:<b:includable id='post' var='post'>
<div class='post hentry'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<div id='mydate'><data:post.dateHeader/></div>
...added code is in orange. Save Template.<div class='post hentry'>
<a expr:name='data:post.id'/>
<b:if cond='data:post.title'>
<h3 class='post-title entry-title'>
<b:if cond='data:post.link'>
<a expr:href='data:post.link'><data:post.title/></a>
<b:else/>
<b:if cond='data:post.url'>
<a expr:href='data:post.url'><data:post.title/></a>
<b:else/>
<data:post.title/>
</b:if>
</b:if>
</h3>
</b:if>
<div id='mydate'><data:post.dateHeader/></div>
NOTE:
- you can change ID "mydate" to whatever you want, it doesn't make any difference (if you do, change it in CSS too)
- remember that you can customize you new date (for example, if I want to align it to the right, I'll add this line in CSS: text-align:right; )..
















132 comments:
so if i wanted my date to be centered, i would add text-align:center?...can i do the same thing with my post title and comment line down at the bottom of my posts? center them? where would i do these things? in other words, can i center EVERYTHING that a part of my post except the post itself? that might look kind of cool...=) thanks, niteyshift
hey niteyshift....
text-align:center;
...will do the trick....and if you want to center EVERYTHING under posts, go to your HTML, and find:
.post-footer {
...and place the "text-align:center;" under it...(without " ")..
Smile!
yep, that all worked! i kind of like the look of it! thank you as always for your help!
I can't find the code you mention in part 2 of your instructions. There is no such code in the HTML of my template. Help!
1. be sure you check the box beside "Expand widget templates" so you can see entire code
2. if you still can't find it, then try placing the date line ABOVE this one:
<div class='post-header-line-1'>
Smile!
OMG. That totally worked. You rock.
I'm working on a 'test' site right now, but check back in a few days and I may have my re-tooled blog up. www.spilledmilkphotography.com
Thanks so much for your help. I'll probably be back to your site. I have no idea how to write HTML code, so I'm very slowly fumbling my way through designing a new blog.
okay, pocket... I've been messing with this for a bit and can't get it to work. I keep getting some weird error. I've tried copying/pasting both of these codes, then tried doing each individually, just in case I was being an idiot the first time.
What am I doing wrong?
Hey Lara Jane...
Try again. First, click on "Expand widget Templates". Then, paste the CSS part of the code.
Next is, CTRL + F and locate this line:
<b:includable id='post' var='post'>
..place the given line of code UNDER the paragraph..
It works...Can you describe your problem a bit more? What error are you getting?
Hi,
it appears that if i have 2 or more posts on the same date, the date will only shows up under the title of the latest post (because blogger originally groups all same-day posts under one date header).
Do you know any workaround for this?
Hm, you can find some info here:
-- show date for every post in Blogger --
...I haven't tried it, but it should work...
Smile!
Can you tell me how to add the date before each post in blogger? I found a code online, but it won't work for me. All I get is a white square. lol No Date.
Thanks so much
Check the Link in comment ABOVE...Honestly, I still haven't tried this...
Smile!
This may be a silly question but is there a way that I can remove the dates completely or am I stuck with them?
LAYOUT ► PAGE ELEMENTS ► click on Edit in BLOG POSTS..
Un-check the date box...
Smile!
thats good snipplet friend. But the date is coming only for the first post. All the other posts in the front page dont have the date...?
http://watch-first.blogspot.com
That's the thing with Blogger...if you make more posts in one day, only the last one will have the date displayed...
There is a hack for this, though...Check the comments above, you're find the link with tutorial..
Smile!
That link you gave for the date doesn't work!
I want to put the date before each post on my blog and this site http://rias-techno-wizard.blogspot.com/2008/07/show-date-before-each-post-in-blogger.html has the code, just can't figure out why it won't work for me!
Sandra,
as I already said, I haven't tried this...Some people said it's working, and some (unfortunate ones) said it doesn't....
Sorry.
this is probably the wrong place to ask but,
I have a problem where on my main page all the posts except for one shows the date at the top of the post!?! I have tried to look around to see what the difference is with that one and the rest but can't figure it out. also, when I click the title to go to that post, the date appears fine. any help would be appreciated
http://nighttimin.blogspot.com
Pablo,
this happens when you publish more than one post in a day...Only the last one published that day will carry the date...
Check the comments above...you'll find a link to the article where it's wxplained how to fix this...
Smile!
why doesn't work on my blog?
www.archipenzolo.blogspot.com
i did what you said
Hey Virginia...
I've updated the post..Try the example 1..
pocket
hi.
thank you very much... I did what you said... but...
Why doesn't Work?
Virginia,
I see 2 dates on your Blog now. Which one do you want to keep?
If you'd like to keep the one that's undet your post title, then deactivate the upper one:
LAYOUT ► PAGE ELEMENTS ► click one Edit in the BLOG POSTS box, and un-check the box beside the Date...
pocket
hello
I am looking for the solution for my blog and I found this helpful post.
I just change my template (and cleary it is the free download one) and I just found out that there is no post date. I don't know any html at all so could you please kindly lighten my way.
my blog is www.souljackaz.blogspot.com
SoulJackaz,
write some posts first...(at least one)..
pardon me if I got anything wrong, do you mean post comment here first or post something to my blog first? coz I have posted about 30 posts to my blog.
pocket,
finally, i made it. i add date to my blog. thank you so much for your advice.
Souljackaz,
are u sure you have content on you Blog? If you do, then something is terribly wrong..This is what I see:
http://i39.tinypic.com/23j3fwk.jpg
pocket
pocket,
sorry to make you confused, i was in a rush so i mistype my blog address, my actual address is www.sljkz.blogspot.com. I followed you advice and i made it. however, it seems that my template is still a bit messed because i still have problems with paragraph, although i typed enter, but then i upload it, it both paragraphs are connected. is it because i use windows live writer? sorry to ask question that is irrelevant to the topic.
SoulJackaz,
can you describe the problem a little more? I don't follow...
:[
Pocket,
pardon my poor English, i must be a bit dizzy then. What I wanted to say was I am using Windows Live Writer to write my post. Every time I finish a paragraph, I always press Enter twice to make a blank line between paragraphs. When I did that in the program, it looked fine, with proper blank line between paragraph, but when i checked in my blog the blanks lines are gone and all paragraphs are connected to each others, which make it too hard to read. It turned exactly the same when I check in the Preview mode of Live Writer. So I am pressing enter about 3-4 times just to make a blank line between paragraph. Is there anything wrong about my script? I am very new to all this stuff, so I am pretty lost now.
SoulJackaz,
your English is great..And for the paragraph problem, first check your settings:
DASHBOARD ► SETTINGS ► FORMATTING ► and beside Convert line breaks select YES.
Also, you can do this:
► when composing the post, instead of hitting Enter, press Shift + Enter...
► or, access the HTML of your post, and manually add the <br /> before the beginning sentence...
I hope that will do...I don't have experience with Windows Live, but as soon as I get around it, I'll write about it...
:]
Hey Pocket
What steps to move the date below the post, as you've done here?
thanks!
Godiva Rides,
I really really really don't know what you mean...Steps? Well, there's the tutorial up there.
You were thinking something else?
:|
Hi Pocket
I want my date to appear at the BASE of my post where the comments and labels are located.
What line do I edit to change the location of the date to BELOW the post NOT at the top with the title.
Thanks!
Godiva Rides,
the easiest (and fastest) way is this:
LAYOUT ► PAGE ELEMENTS ► click on Edit in BLOG POSTS box.
► Un-check the box beside the date (second line). This will hide the date on the top.
► in fourth line, change the timestamp into date (rather than just time). This way, you'll have the date in footer.
The alternative is tweaking the code, which is not necessary here...
If you want, we can try that too...
:]
hi pocket,
sorry to be quiet for a while. I was on the road. I tried the method that you mentioned and it problem still occurred. I think it might be because of Live Writer, I will just wait for the bug fix then. Thank you so much, your web is awesome.
This works for me, but it seems to mess up my post border, and makes it so the lines don't connect and fully surround the post. Any remedies for that?
Also- thanks for this post.
Dan, try increasing margin-top line in your date CSS style:
h2.date-header {
margin-top:10px;
...
I don't have the date on my posts, anywhere at all. I've spent hours trying to work out why, can any help me get the date back??
I have the boxes all ticked in Page Elements --> Blog Posts so its not that. I have the minina tamplate.
Thank you for your help.
http://twinkydezines.blogspot.com/
Twinky,
..I can't see what can possibly cause this. You can:
► back up your current widgets
► and in LAYOUT ► EDIT HTML ► click on "Revert widget templates to default"
..careful, this will activate the default settings of the template, with the date attached. Hopefully.
Hi Pocket,
Thank you, appreciate your help, it has me baffled also.
How do I back up current widgets? just want to be sure before doing anything that I don't loose what I have. or would that be backing up the template?
When I revert to default, will I loose everything? I'd rather live without the date if thats the case lol
Thanks again.
Its ok, I took the plunge and did it and it worked!!
Thanks for your help, not sure what happened, sometimes these things just get corrupted don't they.
Thanks again, now I can follow your fantastic instructions to move it underneath lol
Awesome Blog by the way :o)
Twinky,
..I'm glad it worked out for you....
:]
may I know how to seperate the Month and Day, like I want to show a box containing the date, with Month up and day down?
Thanks for your nice tips and the link to the "show date for every post in Blogger" that realy works very well. :)
i've done it and its working ..yeayy...
hello.
all your tutorials are awesome and i've done several of them with ace :))
then again, i have a slight problem about the date.
if i'm not mistaken, the color of the date is the same as the color of the title of the sidebar is it? (i'm using minima template).
what should i do so that the color of the date and the title of sidebar is different from each other?
please help me T_______T
thank you in advance.
I don't know if its right of me to ask this here. But since there are a lot of capable people here, I hope you could help me.
How can I get that "show date on every post" to work with my blogger? http://yazuka.blogspot.com
Could anyone help me? I would appricate it.
I can't find
b:if cond='data:post.dateHeader'>
h2 class='date-header'>data:post.dateHeader/>/h2>
in my code. I pasted it right before
div class='post-header-line-1'>
as you said to do earlier but that just left me with two dates, one above the post title and one beneath it. Can you give me a clue as to where I can find the first date in my code so I can delete it? Thanks!
Never mind. I found it. By hitting Control F you can search for any word or phrase within the content you are viewing. Comes in handy when you are looking for a little bit of code in the seemingly endless sea of HTML for you website. Thanks for the great tips!
IT WORKED~!!!
Thanks Blog Bulk !! :]
THANK YOU!!!
I can't believe I've actually made this change! I searched for this explanation for AGES, and I thought it was not possible... until I found this by mistake (I was looking for a way to put the next and previous post TITLE instead of just "Older Page" and "Newer Pages". Do you know how to do that by any chance?
Thanks a lot
Well done! I have changed it. But how to change the color of the date?
Thanks.
Mars - Funky Downtown
http://www.funkydowntown.com
I can't seem to find the second part in my coding. right now there is no date on my blog posts and I really need to add the date. How do I do that?
Now what do I do to get the date on every post, instead of just the last one for the day. May you please help. :)
Hi there - my date shows up twice! Any suggestions?
kddonnalee.blogspot.com/
Nevermind!
Thanks so much!
Hi there,
Just wanted to say thank you for the great tips, worked like a charm!
Cheers
This might be a silly question, but is there anyway to put a background image behind JUST my date? I have tried to no avail. Thanks! :)
Wanted this for a new blog just created. Example 2 worked perfect! Thank you...
how to display date below. ie at the end of post with the labels and comment tab.
This is exactly what I was looking for. Thank you!
This worked great, thanks Pocket!
I don't know if anyone has asked this.
The date is currently under the post title and I want to move it above. Not at sure how to go about it without demolishing the HTML code entirely ;-)
Can you help?
It's ok - I've sorted it!
Thanks! Worked great :)
Thank you for this tutorial and all the others I've used! You can see the results here: http://ellenitza.blogspot.com.
Best,
-e
♥ Sarah + Illusia ♥,
it's possible, Just add this line:
background: #000000 url(URL OF YOUR PIC GOES HERE);
...adjust the color and choose your pic...
Smile!
I had figured out how to do this on a test blog and then couldn't figure out how to duplicate it on the real thing. LOL
THANK YOU SO MUCH!
Hi there - Thanks for all your tutorials - they've been very useful! How can I place my labels and date on the same line under my post title? With some spacing between them?
Thanks!
Hi,
I tried your suggestions and though the date stamp appeared below the title, it was also still above. Any suggestions on how to prevent this?
Thanks!
Never mind I fixed it,
Thanks!
Your tips are so helpful!
Thanks so much! I have changed all of my blogs to this formatting now. :)
hi. how can i put the date header directly with post title? i mean, besides the post title but in right align.
Hi Pocket,
Are there any means to remove the date completely?
HI
the dates dont seem to be displaying on the posts.. i mean the first post has the dater but the later ones dont.. how do i make the dates appear on all the posts?
hello thanks for this code it does work but my problem is i couldn't find the date header code so i placed that one under the post title code as u made and it gave me two date headers one above the title n another below , its really confusing is there anything i can do?? thank you
hi there, can you please help me display date on my blog postings.
Thanks!!! I had trouble getting my post elements to move in Blogger. For the life of me, I couldn't get the Labels line to move down to the bottom of the post. After seeing this page, I cut and pasted the appropriate widget and voila! I did have to change "header" to "footer" and change the line # of the next widget (the Comments function). Worked great!
Very helpful post. Thanks, I used it in my blog Mindless Mumbai.
Thanks you very much for this code, very easy to follow instructions. God Bless!
Thank you very much for this! I've been looking for this. It is much better to see the post title first before the post date in my opinion. Again thank you!
hey, i moved date below post title..my label to but,i have a doubt...how to place date and labels in a single line below post tile? please tell me...
i want both date and label in a single line below post title..i moved date below post title..but i couldnt make both date and label in a single line...tell me a solution...
With your tip I could solve my date related some other problem. thanks...
Thank you! As this has been a perfect tutorial will make a link to you thanks!
Thank you this was great! One more thing...:) How do I get space between the post and the dashedline...?
Helou! Again...never mind my other comment...i figured it out :)
I have TWO date lines showing up, one ABOVE my post title, and one BELOW. I just want the ones that's under it, so how do I get rid of the one that's on top?
is there a way to place the date next to the header instead of under or upper?
Thank you again!, God Bless my friend :)
Hi I am new to making a blog and have succeeded in creating one. However, there is one really annoying thing that I can't figure out. I can't make the title of the blog centred, no matter what I try, it doesn't work! I would be so grateful if you have a solution!
Thanks
Hi,
My blog was working just fine till a week ago but suddenly it has started showing just the latest blog post on the first page. To see the others, I have to go to older post link. I checked the settings and had put in 50 post to show on the first page, still nothing. Tried all kinds of experimentation...nothing works. Please, please help me
Thanks a lot! Very easy to follow instructions.
Thanks for this great guidance.
I was actually now aware about it, so now I am going to apply it on my blog now.
Thanks again !
Thanks for this post but I'm only getting half way there. after following your instructions, I end up with two dates, one in the date header and one under the post title. I tried unchecking the date in the post page elements and both dates disappear.
Any suggestions
oh god,it worked!
THANK YOU
Its very glad to see that you have shared such a wonderful information HTML tutorials.I really appreciate for your brilliant efforts on spending time to post this information in a simple and systematic manner ,so that visitors and readers can easily understand the concept.
I wanna say somethingengland soccer jersey,especially if I read a post that really grabs my attention. However, I won’t do it for the sake of doing it.Custom Soccer JerseysI just think that I really like in your article point of view.
Hi Pocket, wanted to know if you could help me change the font size of the date. I did your directions above and I have my date, it's just REALLY big! LOL thanks!
Hi! I want to pull up the date on my blog put it didn't work with the code you gave (i even erased it and it didn't go away so i think that i have to edit something else). Could you please help me find it? I've been looking everywhere and nothing works. Thanks!
http://elburnbook.blogspot.com/
Thank you very much. I have been looking for this ideas when I stuble upon your beautiful site. It works well on my site. Keep up the good job!
http://www.healthybeautifulblog.blogspot.com
I was able to move the date to the bottom. However when I deleted the first code, it now gives me two dates. one on top and one on the bottom. PLEASE help!
Cool hope it wil work
Hey Poket,
I'm an amateur to CSS (and English, as you can see). However, I do my best to make my blog looks as what I like.
Thank you for this guide of changing the position of date header. The first way didn't work on my blog, yet the second worked, and made me more understood about how does css code decide the format of blog. It helped a lot, thank you!
Thaks a lot! I've tried to do this for a very long time not getting any result, but your code worked perfectly (I used the 2nd tutorial).
http://www.elporquedeunamosca.blogspot.com/
Thanks!!
Hi, when I uncheck the box at the page elements, both my date, top and bottom are missing, help? ;>
Thanks for providing this good informative post and i got a good knowledge from your blog, i think most of the peoples are get good benefited from this information.
Hi pocket,
Your tutorial works perfectly for me (I used the 2nd way). Thank you! (:
After inserting these codings... I realised I could no longer use the 'Advanced function' under 'Blogger Template Designer' function. Is it normal?
It says: 'Internet Explorer has modified this page to help prevent cross-site scripting.' And it no longer shows any image of the blog instead it shows '#'.
I wanted to change the color of the date to something else instead of black. Any alternative way?
I was looking at you wbsite,Michael Vick Jersey which is wonderful, and noticed that you have a postcard published by my cousin, Mathew Gardner. I am currently researching our family history and wondered if you had Authentic NFL Jerseys Cheap the original postcard and any other information whih has not been published on your website.
I have some information which I would be happy to furnish if you wish to get in touch.Cheap Steelers JerseysLooking forward to hearing from you.
Maurkice Pouncey Jersey
Mel Blount Jersey
Merril Hodge Jersey
Mewelde Moore Jersey
Mike Wallace Jersey
Mike Webster Jersey
Pink Lady Jersey
President Obama Jersey
Rashard Mendenhall Jersey
Rocky Bleier Jersey
Rod Woodson Jersey
Ryan Clark Jersey
Santonio Holmes Jersey
Super Bowl Champion Patch Jersey
Terry Bradshaw Jersey
Just wondering if you hve a code for how to have the date and the post title on the same line?
Ive been looking everywhere and for some reason the date either goes above the title or below it >.<
www.pebzblog.blogspot.com
I had a great time reading around your post as I read it extensively. Excellent writing! I am looking forward to hearing more from you.
Hello. Is there anyway to put an icon beside date header ? Thank you.
this worked. i used the 2nd example as the first one didn't work for me.
but thank you so muchhh<3
Nice post. I was wondering how to make the post date show in all posts published on the same day? TATA Automobiles recruiting Trainees. Glo free browsing for Opera 4.2lab Glo Latest free downloading cheat for Symbian and Java Phone Education News: We will resolve with ASUU this January - Minister. FG
HEEELP I tried it, and now it's above AND under. I don't want to have 2?? How can i remove the above one, PLS help!!
http://dianaphuongtramngo.blogspot.com/
This worked wonderfully and your instructions were spot on. I had to use the last approach to get it done though. Thank you so much for making a simple solution to a complex problem for me. :)
thank you, worked great!
I've tired both ways..and neither one has worked...I keep getting it to show up under the post title like it should...but another post date is above the post title. So I have too dates. What do I do?
Wow, four years after posting this tutorial and it still works! Thank you so much. :)
For me it works for putting the date under the post title, but the post title ends up with no top margin space at all, it's stuck to the very beggining of the main "window". I can't for the life of me find a way to adjust the top margin. Help?
First of i want to thank you so much you helped me a lot. I did the second tutorial, which worked but now my date is on top white my post title is under and can i switch it around? Please help me.
Brilliant! Thank you for this post. Just used it on my blog.
Thanks for the help! It was just what I needed.
Thank you. Thank You. Thank You! I've been trying to do this for the longest time.
And now I have : )
Thank for this awesome guide. I just applied this on my blog.
"DOUBLE DATE" problem
Hi there,
just like many people on here I used this, but now have 2 dates as well (and unchecking them in the page elements blog post area only deletes both).
I deleted the code from its original spot, so that shouldn't be a problem. The code now only exists AFTER the post title in the html and nowhere else.
Is there a solution for the double date problem??
It somehow didn't "cut" the first time...even though I am positive I did it. Make sure you save template after you've cut the code from its original spot to make sure, then paste it in under the post title code...
thx!
Nice tips, i got it. thanks for this tutorial.
Say it...