Viewing 10 replies - 1 through 10 (of 10 total)
  • From the first glance couldn’t find whats wrong. But I have a “feeling” that if you use only one CSS file (layout.css or spring_flavour.css) which mostly dublicate each other, the problem could resolve.

    Didn’t check deeply, so check if they really duplicate, seems that they do, but…

    Tell me what was wrong if you resolve it.

    Thread Starter eenochs

    (@eenochs)

    I can’t find it. I combined all the css files into one layout.css. I removed the reference to spring in the style.css file.

    I went through and removed things and nothing is changing.

    Does anyone have a suggestion as to where to look.

    View the html source of the page and you should see the following–the culprit.

    p {
    text-align: center;
    }

    It’s likely that those lines are embeded in index.php.

    Looks like your css is ericsoft.css?
    What are you trying to change. Looks like the text is left aligned.

    Thread Starter eenochs

    (@eenochs)

    citeewurkor

    Where do you see that i’m using ericsoft.css file.

    I don’t have that css file saved on the hosting server.

    Well, I was using this extension in firefox:
    https://chrispederick.com/work/webdeveloper/

    In the tab that pulls up when you edit CSS it says that the name of the style sheet is ericsoft.css.

    check it out
    https://hoosiernerd.com/ericsoft.css

    man, I’m sorry, there went my brain again. I was using the site that links from your name. I’m really sorry for the confusion…

    ok, I looked at the right one this time. You have an embedded style that looks like this:
    p {
    text-align: center;

    if you change “center” to “left” or “justify” that should fix your problem. I used the CSS editor and it fixed it right up.
    Well, I see alphaoide already said that…
    ??

    Thread Starter eenochs

    (@eenochs)

    thanks citeewurkor I think you fixed me. I went in and removed all the text-align: center; references in the code and css files that I found. then put in the actual post itself I put a <p align=”left”> command. Might not be the best way but i got my result.

    Thank you so much citeeworkor

    you’re welcome. With your CSS fixed, you probably won’t need the paragraph tag, but I understand.
    Be sure and try out that extension I mentioned. It’s saved me many, many times with CSS problems.
    Good luck!

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Text is centered, Need to align’ is closed to new replies.