• Resolved darrmik

    (@darrmik)


    I am trying to add a decent amount of text to the about section. When I added the link to the page I want to use, all of the text on the page became centered in the theme. How do I make it display left justified?

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi @darrmik
    go to your WP Dashboard under “Appearance-> Customize-> Additional CSS” and paste this code:

    
    section.croccante_aboutus.noImage .aboutus_columns_three {
        text-align: left;
    }
    

    This code should align the text to the left.
    Best Regards,
    CrestaProject

    Thread Starter darrmik

    (@darrmik)

    Perfect!

    Could you give me some code to remove some of the spacing between “paragraphs?(same page)” Looks like there is about 3 spaces between each instead of a single.

    Theme Author CrestaProject

    (@crestaproject)

    Sure!
    You can use this CSS code:

    
    .aboutus_columns_three.one p {
        margin: 0 0 1.5em;
    }
    

    Best Regards,
    CrestaProjet

    Thread Starter darrmik

    (@darrmik)

    Exactly what I needed…thx

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Center Justifying’ is closed to new replies.