Okay
  Public Ticket #3528220
Footer spacing
Closed

Comments

  •  8
    marknorm14 started the conversation

    Hi...

    Could you help - im looking to alter the vertical spacing between columns in the footer on mobile...


    so on attached id like to close up the space highlighted by the red boxes...and by the green boxes..

    https://new-top-marksolutions-co-uk.stackstaging.com/

    thanks

    Attached files:  Screenshot 2023-11-23 at 09.23.27.png

  •  2,958
    Andrew replied

    Hello there,

    Thank you for reaching out to us.

    To make the changes as requested, you will need to add some custom CSS code. To do this, please follow these steps:

    From your WordPress dashboard, Navigate to Salient > General Settings > CSS/Script Related. In the custom code area, insert the provided CSS snippet:

    @media only screen and (min-width: 1px) and (max-width: 999px) {
      #footer-outer .widget h4 {
        margin-bottom: 5px
      }
      
      
      #footer-widgets .container .col {
          margin-bottom: 0px;
      }
      #footer-outer .row {
        padding: 55px 0 0;
      }
    }
    

    Once the code is added, save and refresh the page to see if the change has been applied. In case it helps, please check this section from the documentation on CSS/Script Related. If this does not work as expected or If you have any further questions or need additional assistance, don't hesitate to write back, I'm happy to help. 

    Kind regards,

  •  8
    marknorm14 replied

    perfect! thanks Andrew

  •  8
    marknorm14 replied

    Hi...also on this site...

    https://new-top-marksolutions-co-uk.stackstaging.com/

    How would I left align the text on the mobile menu?....and alter padding on that when left aligned?


    thanks!

  •  8,838
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container li {
            text-align:left !important;
        }
        #slide-out-widget-area.fullscreen-alt .menuwrapper li a {
            padding: 10px 20px !important;
        }
    }

    Thanks


    ThemeNectar Support Team 

  •  8
    marknorm14 replied

    great...thanks...


    only issue is the 'Back' button/text jumps a bit on load?

    Also, can I top align the menus?


    thanks

  •  8,838
    Tahir replied

    Hey Again,

    Use this CSS instead: 

    @media only screen and (max-width: 690px) {
        body #slide-out-widget-area.fullscreen-alt .inner .off-canvas-menu-container ul {
            text-align: left !important;
        }
    }


    Thanks.


    ThemeNectar Support Team