Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1209618

    Hi,
    how can i reduce the footer height?
    Cause everytime i add something it gets bigger.
    And also de socket height?

    And also i would like to know how i made it mobile responsive the footer

    Thanks

    #1209823

    Hey josefalquez,

    I’m not sure I understand what you are looking to achieve, could you try to explain a bit further or post screenshots highlighting your intentions please?

    Best regards,
    Rikard

    #1210053

    hi!

    I didnt know how else i could upload them

    Let me know if i explain myself thanks

    Regards

    #1210235

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    #footer {
        padding: 0;
    }

    It looks like have found solutions for the copyright and icons problem already?

    Best regards,
    Rikard

    #1210452

    Hi,

    Is not changing de height! if i add 30 or 50 px it stays the same.

    How can I change the font size in the footer? and how can i reduce the line spacing in the footer?

    Thanks for your help

    Regards

    #1210886

    Hi,

    how can i reduce the footer height?
    Cause everytime i add something it gets bigger.

    So you want the footer to be a fixed height? Please note that some of your content might not be visible if you do that.

    Please try this to reduce the height of your text:

    #footer p {
        margin: 0;
    }

    Best regards,
    Rikard

    #1211132

    Hi,

    None of those codes are working! I am putting them in Quick CSS under Enfold->General Styling, but nothing change.

    What else can i do?

    #1211441

    Hi josefalquez,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 767px) {
        #footer {
            padding: 0 15px;
        }
        .responsive #top #wrap_all #footer .flex_column {
             margin-bottom: 0;
        }
        .responsive #top #wrap_all #footer  p {
            margin: 0;
        }
        #footer .widget {
            margin: 10px 0 10px 0;
        }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1212980

    Hi,
    it work wonderful for mobile responsive!

    If I would like to do the same for pc screen what do I have to do?

    Thank you Victoria

    Jose Falquez

    #1213359

    Hi josefalquez,

    So you just need to use the code without the media query like this:

    
        #footer {
            padding: 0 15px;
        }
        .responsive #top #wrap_all #footer .flex_column {
             margin-bottom: 0;
        }
        .responsive #top #wrap_all #footer  p {
            margin: 0;
        }
        #footer .widget {
            margin: 10px 0 10px 0;
        }
    

    Best regards,
    Victoria

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