• Someone at my work made a change or something that has forced all blog posts to center all the text content. Actually, any text within h1, h2, p, and span tags as well as text that isn’t in any tag.

    I need to find out why this is. I’ve tried inspecting elements of the post pages but I’m still not finding anything. An example of the problem can be seen here:

    https://maidsbytrade.com/most-embarrassing-moments-when-hiring-a-house-cleaning-service/

    Any blog post older than this one has this problem happening. Any post newer than it has been fixed by me going into the blog posts and making the text align to the left / justified. BUT whenever a new blog post is made all the h1, h2, p, span text is automatically centered. h3, h4, h5, h6 heading text is aligned to the left as it is supposed to be. I haven’t found a forum thread on this specific problem yet and I’ve been banging my head against this problem for many weeks now.

Viewing 4 replies - 1 through 4 (of 4 total)
  • you have an inline style sheet that does this
    h1, h2, p {
    text-align: center;
    }
    check out this plugin : popup-by-supsystic
    there is a file in popup-by-supsystic/js/core.js

    and look at this line that says:

    “All that is below: CSS I’ve come up with. -Brian *\/\nh1, h2, p {text-align: center;}”
    this might be a good start.

    When you find the “h1, h2, p {text-align: center;}” in that file, turn it into “h1, h2, p {//text-align: center;}”
    and see what happens.

    Sorry i meant to say turn it into “h1, h2, p {/*text-align: center;*/}”

    Thread Starter Brian

    (@brianmbt)

    Holy crap. Wow. Thank you. I’ve had trouble finding where the hell that CSS rule was

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘All text in posts now centered, no idea why’ is closed to new replies.