Edir Infoway front page?

Discussion in 'Infoway WordPress Theme' started by chrisr, Sep 4, 2013.

  1. chrisr

    chrisr Member

    Joined:
    Mar 27, 2012
    Messages:
    38
    Likes Received:
    0
    I would like to edit the Infoway theme front page so instead of having three area's in the middle of the page that have a read more icon under them I can just have an entire paragraph reading the whole way left to right not the three seperate paragraphs as is standadr to Infoway theme. I pressume I need to edit the front-page.php and add some type off css? please help. Inforway edited fron page.jpg

    See screen shot attached.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    I have visited to your website http://www.coacheswebsite.net/website1/, it seems that you have already done your customization to change the three column boxes in a single column.

    If you want to align the text of that single column then
    paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .feturebox .featurebox_inner .featurebox_desc p {
    text-align: justify;
    }
    .feturebox .featurebox_inner .featurebox_desc.first {
    text-align: justify;
    width: 625px;
    margin-right: 5px;
    }
    .feturebox .featurebox_inner .featurebox_desc.second{
    text-align: justify;
    width: 625px;
    margin-right: 5px;
    }
    .feturebox .featurebox_inner .featurebox_desc.third{
    text-align: justify;
    width: 625px;
    margin-right: 5px;
    }
    This will solve your issue.
     

Share This Page