Home page

Discussion in 'Infoway WordPress Theme' started by bridgie, Jul 4, 2013.

  1. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    I would like to centre the logo and also how do i change the footer to 3 columns instead of 4

    thanks
     
  2. Piyush

    Piyush Support Staff

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

    1. For the Logo issue,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .header .logo {
    float: right;
    }
    .logo a img {
    margin-right: -115px;
    }
    @media only screen and (min-width: 767px) and (max-width: 960px) {
    .header .logo {
    float: none;
    }
    .logo a img {
    margin-right: 0px;
    }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .header .logo {
    float: none;
    }
    .logo a img {
    margin-right: 0px;
    }
    }
    @media only screen and (max-width: 480px) {
    .header .logo {
    float: none;
    }
    .logo a img {
    margin-right: 0px;
    }
    }
    This will solve your logo issue.

    2. For the Footer widget issue,
    Go to the sidebar-footer.php file present in your Theme Directory and edit the code as shown in the image given below.

    [​IMG]
    [​IMG]

    This will solve your footer widget issue.
     
  3. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
  4. Gourav

    Gourav Support Staff

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

    Please provide the following information listed below.

    Thread Link:
    Your Website URL:
    WordPress Username:
    WordPress Password:

    Send this information on our email at [email protected]
    We will check and resolve your issue.
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Issue resolved, Please check your website.
     

Share This Page