Okay
  Public Ticket #3982423
Change Footer Columns
Open

Comments

  • larissa23 started the conversation

    How can I change the footer columns to be:  

    1/2 + 1/4 + 1/4


  •  2,069
    Judith replied

    Hello Larissa,

    Thanks for writing 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:

    #footer-outer .col:first-child {
        width: 18.5%;
    }
    #footer-outer .col:nth-child(2) {
        width: 18.5%;
    }
    #footer-outer .col:nth-child(3) {
        width: 38.5%;
    }
    #footer-outer .col:last-child {
        width: 18.5%;
    }

    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. 

     

  • larissa23 replied

    100% did not work.  No change to footer at all.  I asked for 1/2 + 1/4 + 1/4 - the code you supplied is 4 columns and doesn't look like it answers my question at all...

  •  2,069
    Judith replied

    Hi Larissa,

    Thanks for reaching writing back.

    To assist you better, we'd love to have a closer look at your setup and to do this, we'll need admin login credentials 

    (dashboard URL, username, password) to your site. This will enable us to conduct a more in-depth investigation of the issue based on your specific configurations. Would you mind sharing this with us? 

    If you prefer, you can safely share the access through an access plugin such as Controlled Admin Access.

    Before you provide this information, we strongly recommend taking a backup of your site.

    If you have any concerns or questions about this process, please don't hesitate to let me know.

    Best regards,

  • larissa23 replied

    Can you get someone technical to take a look at the code you supplied rather than me give out access as that is what you have said to both my tickets.  Anyone who knows CSS will see at a glance that will not work.

  •  3,163
    Andrew replied

    Hi Larissa,

    Thank you for getting in touch.

    Please share your site URL so we can check out your current layout and advise.

    We look forward to your reply.

    Thanks,

  • larissa23 replied

    https://dev1.specialisedhealth.com.au 

    and i want 1/2 + 1/4 + 1/4 for the footer.

  •  9,204
    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 (min-width: 1000px) {
        #footer-outer .col:first-child {
            width: 48% !important;
        }
    
        #footer-outer .col:nth-child(2) {
            display: none !important;
        }
    
        #footer-outer .col:nth-child(3) {
            width: 24% !important;
        }
    
        #footer-outer .col:last-child {
            width: 24% !important;
        }
    }
    
    

    Thanks


    ThemeNectar Support Team