FOOTER

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #157669

    E-N Admin
    Participant

    Hi,

    I have a black background footer. Just wondering how do I make the fonts of the footer more bold and white in colour – currently it is grey and hover is white but I’m finding that it is not that visible and how do I make the header of footer bold?

    Also there’s a line separating the main footer and the copy right bottom area– how do I make this line more prominent?

    https://prntscr.com/pyt0qo

    #157719

    Hello,

    To make the title of footer a little bold you can use the below CSS code in theme settings >> Custom CSS >> Global Custom CSS:

    .footer-column .widget-title{
    font-weight:700;
    }

    To make the footer links and content a little bold. You can use the below CSS code:

    .color-scheme-light .footer-widget a{
    font-weight:700;
    }

    To make the copyright bottom area more prominent you can use the below code in Copyrights text inside footer under theme settings:

    <p style="font-size:20px;">Copyright <i class="fa fa-copyright"></i> 2019 ENUESQUE. All rights reserved. </p>

    Best Regards.

    #159796

    E-N Admin
    Participant

    Hi,

    I was after more of the content of my footer to be white and hover colour to be pink. Currently its gray and hover colour is white.

    #159819

    Hello,

    If you want to display the footer links in the white color and hover color as pink. You have to insert the below CSS code in global custom CSS area under theme settings >> custom CSS:

    .color-scheme-light .footer-widget a  {
        color: white;
    }
     .color-scheme-light .footer-widget a:hover {
        color: pink;
    }

    Result: https://jmp.sh/UXw3qNa

    Best Regards.

Viewing 4 posts - 1 through 4 (of 4 total)