Viewing 8 replies - 1 through 8 (of 8 total)
  • Hello ductrduong,

    Put below css code into your current theme’s style.css file located at https://www.flosstime.com/wp-content/themes/your_current_theme/ folder.


    /*Top Footer*/
    footer .qodef-footer-top-holder {
    background-color: #3AAADC !important; /*background color*/
    color: #fff !important; /*Text Color*/
    }
    /*Bottom Footer*/
    footer .qodef-footer-bottom-holder {
    background-color: #3AAADC !important; /*background color*/
    color: #fff !important; /*Text Color*/
    }

    Note : All Changes you done in style.css or other file are gone when you update theme. So prefer Child Theme.

    Hope this will helps you.

    Thread Starter ductrduong

    (@ductrduong)

    @saurabhdhariwal you’re a life saver that worked great! Is there any way to make the text and social icons all white? Right now it’s grey with white on hover.

    Thank you so much!

    Hello ductrduong,

    Put below css code into your current theme’s modules.min.css (at the end) file located at https://www.flosstime.com/wp-content/themes/your_current_theme/assets/css/ folder.

    Above code that i provide put into modules.min.css file.


    /*Heading Color*/
    footer .widget .qodef-footer-widget-title {
    color: #000;
    }
    footer {
    color:#000;
    }
    /*link color*/
    footer a {
    color:#000;
    }
    /*link hover color*/
    footer a:hover {
    color:#fff;
    }
    footer .widget .qodef-twitter-widget li .qodef-social-twitter,
    footer .widget .qodef-twitter-widget li .qodef-tweet-content-holder .qodef-tweet-text a,
    footer .widget .qodef-twitter-widget li .qodef-tweet-content-holder .qodef-tweet-time a {
    color:#000;
    }

    Hope this will helps you.

    Thread Starter ductrduong

    (@ductrduong)

    Thank you again! I’m not sure how to access the modules.min.css file from the dashboard though and I tried your link but it’s not working. Any ideas?

    Hello ductrduong,

    You can access these file from dashboard (i.e. Dashboard >> Appearance >> Editor)

    OR

    You can directory edit file from cPanel or FileZilla (i.e. wp-content/themes/your_current_theme/assets/css/) and find modules.min.css

    NOTE: Make sure your theme directory have Write access then only you are able to access file from Dashboard.

    Hope this will helps you.

    I am facing the same problem. I want to change the color of the footer widgets titles to white. Could you help me to fix it?

    and

    I want to reduce space between top of the screen and navigation bar.

    • This reply was modified 7 years, 11 months ago by Jan Dembowski.
    Moderator Jan Dembowski

    (@jdembowski)

    Forum Moderator and Brute Squad

    Hello nisal077,

    Add below code into your current active theme’s style.css file located at wp-content/themes/your_current_theme/ folder.


    /*Header Space*/
    .top-header .home_navigation {
    margin-top: -47px;
    }
    @media (max-width: 768px) {
    .top-header .home_navigation {
    margin-top: 0px;
    }
    }
    /*Footer widget title color*/
    .top-footer-block .widget-title {
    color: #fff;
    }

    Note : All Changes you done in any file of theme are gone when you update theme. So prefer Child Theme.

    Hope this will helps you.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Color of footer and bottom content area’ is closed to new replies.