Justify body text

Discussion in 'ColorWay WordPress Theme' started by johnonlineuk, May 1, 2013.

  1. johnonlineuk

    johnonlineuk New Member

    Joined:
    Mar 14, 2013
    Messages:
    24
    Likes Received:
    0
    I want to be able to justify my body text<p> ( not all of it) so that it is square on the page. I do not wish any other text to be justified. I want the rest to be lefts sit currently is.

    I know that I can go into every page and alter it by using <p align="justify"> but I would like to do it via the CSS if possible.

    Thanks
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,


    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    p{
    text-align: justify!important;
    }
     
  3. johnonlineuk

    johnonlineuk New Member

    Joined:
    Mar 14, 2013
    Messages:
    24
    Likes Received:
    0
    Thanks for this but the footer text on the bottom right is also justified- can you provide the code to right align please?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer-navi .navigation .right-navi p{
    text-align:right!important;
    }
     

Share This Page