• I have 2 issues that relate to a recent plugin that’s made some unwanted changes to my header and footer elements…

    1. I run vantage premium with page builder and on the ‘default page’ setup i now have a 75px body padding (above my menu) that I cant seem to change. My page builder template pages are not affected. I can locate the css code in Chromes ‘inspect element’ (as below) but cant find the code in any css or php files. Any help appreciated. I have tried a custom css body padding line but i can only make the padding longer not shorter. This is my site page LINK

    `body{
    font:14px/20px ‘Helvetica’, Arial, sans-serif;
    margin:0;
    padding:75px 0 0 0;
    text-align:center;
    -webkit-text-size-adjust:none;
    }`

    2. My footer height is varying greatly depending on the length of my page content ie: if i have no content on my page then the footer runs the whole height of the browser…??? an example of this can be seen at this link

    what I would like is the footer to vary to be just enough height to contain the elements within.
    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • 1. change padding to 0
    2. add content to page or add min-height to #main
    example:

    #main {
    min-height: 700px;
    }

    Thread Starter warren62

    (@warren62)

    Thnx for the response Ciprian, but as I said in my original post, I cannot find that specific piece of code to change it back to ‘0’ and when I add custom css to say ‘body padding 0’ it doesn’t change it on those affected pages. I can however increase the body padding through this method and it changes the padding to ALL PAGES but I cant reduce the padding to have an effect on those ‘template pages’. So even when I create a new ‘default page’ it has the 75px padding at the top.
    The specific code I showed is only viewable when I go through ‘inspect elements’ in chrome. I cant locate the code anywhere in the actual css style sheet or php files and i have searched for hours.
    ????

    you have to create a child theme and add the code to style.css or install the jetpack plugin and activate custom css option
    https://jetpack.me/support/custom-css/

    and then add to custom css

    body {
    padding: 0;
    }

    Thread Starter warren62

    (@warren62)

    thnx again, but i thought i explained that I have already tried that…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Vantage Premium] Body Padding I cant change’ is closed to new replies.