x

Is there a way to centre blog titles and dates?

Hi

I would really like to centre my blog post titles and dates. I managed to centre the titles using the following css: 

.blog-title {text-align: centre;}

but when I tried do the same for .blog-date it didn't work. And it just looked odd with one centred and the other not.

Site is: http://www.philipglenisterfans.org.uk/

Any ideas on how to do this?

2,327 Views
Message 1 of 5
Report
1 Best Answer

Best Answer

Hi @theoofoof,

I must admit I found this tricky too, until I realised that the blog date takes its CSS from the sites.css file instead of the main.css file:image

This is what has worked for me after playing with different rules. In your blog page's SEO Settings add this to the HEADER CODE section:

<style>
.blog-header {
text-align: center !important;
}
.blog-date {
text-align: center !important;
}
.blog-post .blog-date {
width: 100%;
}
.date-text{
width: 100%;
}
.blog-comments {
width: 100%;
}
</style>

image

 The result looks like this:

 image

You can view it in action here: http://mjcsdemo.weebly.com/blog

Let me know how you go!

Cheers, Mark

View Best Answer >

2,308 Views
Message 6 of 5
Report
4 REPLIES 4

Hello! It sounds like you're looking for CSS changes in particular, which our Community here should be able to lend a hand with. Are you looking to keep the same theme aside from that change?

2,321 Views
Message 6 of 5
Report

Best Answer

Hi @theoofoof,

I must admit I found this tricky too, until I realised that the blog date takes its CSS from the sites.css file instead of the main.css file:image

This is what has worked for me after playing with different rules. In your blog page's SEO Settings add this to the HEADER CODE section:

<style>
.blog-header {
text-align: center !important;
}
.blog-date {
text-align: center !important;
}
.blog-post .blog-date {
width: 100%;
}
.date-text{
width: 100%;
}
.blog-comments {
width: 100%;
}
</style>

image

 The result looks like this:

 image

You can view it in action here: http://mjcsdemo.weebly.com/blog

Let me know how you go!

Cheers, Mark

2,309 Views
Message 6 of 5
Report

@MJCS

Thank you so much. That worked perfectly! You're a star.

2,260 Views
Message 6 of 5
Report

Glad to hear that. Thank you.

Smiley Very Happy
2,258 Views
Message 6 of 5
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.