Make text Aligned Full instead of Left Justified

Discussion in 'ColorWay WordPress Theme' started by kaocoaching, Oct 18, 2013.

  1. kaocoaching

    kaocoaching Member

    Joined:
    Jan 8, 2012
    Messages:
    34
    Likes Received:
    1
    How do I make the default text for posts Full versus Left Justified?
     
  2. kaocoaching

    kaocoaching Member

    Joined:
    Jan 8, 2012
    Messages:
    34
    Likes Received:
    1
  3. 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:
    .content-wrap #blogmain img.postimg {
    float: none;
    }
     
  4. kaocoaching

    kaocoaching Member

    Joined:
    Jan 8, 2012
    Messages:
    34
    Likes Received:
    1
    Thank you! Is there a way to make this the case for all of the pages?
     
  5. 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:
    a img.alignleft {
    float: none!important;
    }
    a img.alignright {
    float: none!important;
    }
    .content-wrap img {
    float: none!important;
    }
    
     

Share This Page