Adjusting sidebars

Discussion in 'Infoway WordPress Theme' started by c4rnage, Jun 26, 2013.

  1. c4rnage

    c4rnage New Member

    Joined:
    Mar 26, 2013
    Messages:
    6
    Likes Received:
    0
    Hi,
    I would like to do the following with my sidebars:

    1.
    stretch and image across the full width and have the right sidebar further down the page
    eg: stretch the image on here http://www.officecentric.com/use-our-address/ right across and move the contact us widget down from the primary widget area to the secondary (or just move the primary down)
    Also, please see that the contact us widget area is slightly lost on the right-hand side. Is it possible to adjust this so the contact us widget is narrow, or the sidebar is wider?

    2.
    remove 2 of the 4 footer widget areas

    Are these two possible please?

    Thanks in advance,
    Carnage
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    1. For the image issue, it is not possible to display that image through out the fullwidth and to display the sidebar underneath to this image because this theme is implement on 960 Responsive Grid system and if we try to change its width then the layout of theme will break up.

    For the contact us widget issue, paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 98%;
    }
    .wpcf7-form-control.wpcf7-text {
    width: 98%;
    }
    .wpcf7-form-control.wpcf7-textarea {
    width: 98%;
    }
    You can adjust the value of width as per your requirement.

    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]

    Then third and fourth footer widget area will not display on your website and only first and second footer widget will work.
     

Share This Page