How to centre align the 1,2,3,4 feature headings and description

Discussion in 'Andrina WordPress Theme' started by bluepaddy999, Feb 16, 2013.

  1. bluepaddy999

    bluepaddy999 New Member

    Joined:
    Feb 12, 2013
    Messages:
    7
    Likes Received:
    0
    Hi

    How can I centre align the 1st,2nd,3rd and 4th feature headings and the description

    Thanks in advance.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feature-content .feature-item h4 {
    text-align: center;}
    .feature-content .feature-item p {
    text-align: center;}
    
     
  3. bluepaddy999

    bluepaddy999 New Member

    Joined:
    Feb 12, 2013
    Messages:
    7
    Likes Received:
    0
    thanks . worked a treat.
     
  4. bluepaddy999

    bluepaddy999 New Member

    Joined:
    Feb 12, 2013
    Messages:
    7
    Likes Received:
    0
    Can you also tell me how to centre align the right column description please ?
    ive tried tried fiddling around with the CSS as above but no luck.
     
  5. bluepaddy999

    bluepaddy999 New Member

    Joined:
    Feb 12, 2013
    Messages:
    7
    Likes Received:
    0
    and the right column header aswell

    thanks
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .bottom-feature .bottom-feature-right h1 {
    text-align: center;
    }
    .bottom-feature .bottom-feature-right .bottom-feature-right-wrapper p {
    text-align: center;
    }
     
  7. bluepaddy999

    bluepaddy999 New Member

    Joined:
    Feb 12, 2013
    Messages:
    7
    Likes Received:
    0
    that worked great for the column header but not the description ????
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    For the description issue, paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    .bottom-feature .bottom-feature-right .bottom-feature-right-wrapper {
    text-align: center ! important;
    }
    
    This will solve your issue.
     

Share This Page