Need help with spacing under Feature Images and footer text alignment

Discussion in 'BizWay WordPress Theme' started by mdwkaty, Jan 23, 2014.

  1. mdwkaty

    mdwkaty Guest

    Joined:
    Dec 2, 2013
    Messages:
    11
    Likes Received:
    0
    Hello,

    Okay, I have two issues that I need help on.

    1. I don't need so much space for text under the 3 home page feature images (so that the footer area with address and contact info can be moved higher up on the page below them so less scrolling)…I like some of the background image showing under the feature images (so that I can have one line of text under them) but not as much. Is there a way to lessen this space?

    also,

    2. The footer text on the right (in this case the phone number:
    call: 410.507.0234
    ) is not right aligned with the right side of the feature box above it, slider image, and web page banner--it goes way off to the right. The center footer text ("email us") is also not centered on the page. Is there a way to make the middle footer text centered and then have the right footer text be right aligned with the images on the page?

    Here is my website link:
    http://www.myriaddesignworks.com/mti-systems/

    Thanks! Appreciate any tips!
     
  2. Piyush

    Piyush Support Staff

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

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .main-content-container {
    padding-bottom: 0px;
    }
     
    This will solve your first issue.

    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-wrapper .footer-top-inner2 {
    width: 310px;
    text-align: center;
    }
    .footer-wrapper .footer-top-inner3 {
    margin-left: 0px;
    text-align: right;
    width: 310px;
    } 
    This will solve your second issue.
     
  3. mdwkaty

    mdwkaty Guest

    Joined:
    Dec 2, 2013
    Messages:
    11
    Likes Received:
    0
    Thank you, Piyush!..worked great!
     

Share This Page