How to center content

Discussion in 'Appointway WordPress Theme' started by hossman, Nov 6, 2013.

  1. hossman

    hossman New Member

    Joined:
    Oct 21, 2013
    Messages:
    7
    Likes Received:
    1
    I removed the appointment way plugin and also the hour and google map sections on the right handside of the homepage. So my entire right hand side has allot of open space. How do i center the entire page content from the Slider down to testimonials.
     
  2. Gourav

    Gourav Support Staff

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

    Go to front-page.php present in your theme directory and remove code from line 267 to 319.

    also follow the instruction as shown in image given below

    2013-11-07_1515.png


    Now,

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

    Code:
    .flexslider .slides li img{
    width:100%;
    }
    .flexslider{
    width:100%;
    }
    .featurebox .featurebox_desc{
    width:31%;
    }
     
    @media only screen and (max-width: 960px) and (min-width: 767px){
    .featurebox .featurebox_desc {
    width: 189px!important;
    margin-right: 54px!important;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .featurebox .featurebox_desc {
    width: 217px!important;
    margin-right: 29px!important;
    }
     
    }
     
    @media only screen and (max-width: 480px){
    .featurebox .featurebox_desc {
    width: 275px!important;
    margin-right: 29px!important;
    }
    }
    
    This will solve your issue.
     

Share This Page