• Resolved daviepress

    (@daviepress)


    Hello, just wanna say awesome customization on this theme! By far the best free wordpress theme I have used. Anyway I have been able to customize everything I want on the sight before getting ready to fully launch but on my practice blog post, the headline is kind of clashing with the Post Date by Author subtext.

    My site is thelazybusinessman.com. You just go to blog, click on blog post and then you can see that the headline is nice and centered but the DATE and AUTHOR subtext is kind of clashing. I would like to be able to center it and get it so that there is not so much empty space before the horizontal line. There isn’t that much space on my other pages but for some reason on my blog posts the space is jumbled. Please help me fix the formatting for my posts, thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • WEN Solutions

    (@wen-solutions)

    Add the below CSS code. It may work for you.

    .entry-meta {
        margin-left: 188px !important;
    }

    Note: Child theme is recommended to customize theme.
    Thanks

    Thread Starter daviepress

    (@daviepress)

    Awesome the code worked perfectly. Only problem now is that the date and author subtext is now centered on the main BLOG page, and the headline is aligned to the left. The headline is centered on all other pages and posts but im guessing the code for the main blog page has it aligned to the left, any ideas how to make it so that it is centered as well?

    Also I noticed the Categories on the bottom and “leave a comment” link are now centered as well, whereas they were aligned to the left before. Anyway to change that back and not ruin the centering of the date and author? Link is here: lazybusinessman.com/blog

    WEN Solutions

    (@wen-solutions)

    Please remove the above added code and add the below CSS code.

    #page .entry-title .entry-meta {
        text-align: center;
    }
    
    #page .entry-title .entry-title {
        text-align: center;
    }

    Thanks

    Thread Starter daviepress

    (@daviepress)

    Hello,

    I replaced the code and the DATA and AUTHOR subtxt just went back to being aligned to the left. Any idea how I should proceed? Thanks

    WEN Solutions

    (@wen-solutions)

    Would you please try the below CSS code once.

    #page .entry-title .entry-meta {
        text-align: center !important;
    }
    
    #page .entry-title .entry-title {
        text-align: center !important;
    }

    Thanks

    Theme Author Tom

    (@edge22)

    You should just be able to do this:

    .single .entry-meta {
        text-align: center;
    }

    Then instead of using an <hr>, try this:

    .single .entry-header {
        padding-bottom:2em;
        border-bottom: 1px solid #DDD;
    }

    Let me know ??

    Thread Starter daviepress

    (@daviepress)

    Thanks Tom,

    tried the code you gave me and everything is showing up as I described. The categories on the bottom of the actual blog post are still being centered but I don’t mind. If you can add code to preserve everything and just change the category data so that it aligns to the left that would be perfect. If not no worries, I have it set up exactly how I wanted, thank you!

    Theme Author Tom

    (@edge22)

    Ah, try this instead:

    .single .entry-header .entry-meta {
        text-align: center;
    }
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Blog Post Title/Headline Clash’ is closed to new replies.