Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #286186

    Hi– Finishing up the site in the private area below– In the “helping professionals build their careers…” blue box under the slider, when you minimize the browser window, the navy/purple color is not all the way under the text… the text is outside of it a bit. I have an id in that area and this code cooresponding to it–
    #home-email {
    margin-bottom: -45px;
    margin-top: -2px;
    }

    I know that my bottom margin is the issue here, but when I tried to just use a “small padding” on the area, the height of the box was sooo much taller. If I set an actual height in that box, it won’t be tall enough for all the text when the text wraps to extra lines in smaller browsers. How do I maintain the theme configuration with that color section, and keep that area always the same distance around the white text to coorespond with our design? Is there some code I can add to the #home-email id or will I need to take some extra steps?

    Thanks for your help! :)
    Angie

    #286276

    Hi Angiec13!

    Thank you for using our theme.

    Put the following in custom.css at the bottom:

    
    @media only screen and (min-width: 768px) and (max-width: 959px) {
    #home-email {
    margin-bottom: auto;
    text-align: center;
    }
    }
    

    This also centers the text.

    Regards,
    Günter

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.