• Resolved Redman45

    (@redman45)


    Dear all ,

    I am very new to wordpress.
    How do i customize my footer menu ?

    My website:
    https://www.surrealco.com/

    I am looking at removing the hovering effect and the additional background color of the links and editting the font type and size under Footer col 2 and 3. (Egs. such as About us,how to order,Faqs,contact us, payment delivery,return and exchange, terms and conditions as well as order status.)

Viewing 4 replies - 1 through 4 (of 4 total)
  • hannah

    (@hannahritner)

    Hey, you can remove the hover and background with this:

    #containerfooter .menu li a {
    background: none;
    }
    #containerfooter .menu li a:hover {
    background: none;
    }
    #containerfooter .menu li a:hover {
    color: #000;
    }

    And you can change the font and size with this:

    #containerfooter .menu li a {
    font-size: 25px;
    font-family: sans-serif;
    }

    Just paste those in your custom css box in Theme Options > Advanced Settings.
    Hope that helps!

    Hannah

    Thread Starter Redman45

    (@redman45)

    Dear Hannah !

    you are amazing THANKS ! ??
    one more question , is there anyway i can customized the head of my footers in terms of size and fonts(Egs Connect , Quicklinks, Customer Care, and Stay Connected)

    Sincerely,
    Ian.

    hannah

    (@hannahritner)

    That pulls from your h3 text (set in theme options > typography). But if you like you can edit just those headings with this:

    #containerfooter h3 {
    font-family: sans-serif;
    font-size: 25px;
    }

    Hannah

    Thread Starter Redman45

    (@redman45)

    Thanks Hannah !

    THANK YOU ! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Footer Menu’ is closed to new replies.