• Resolved bigbaas

    (@bigbaas)


    Hi,

    I’m quite new with WordPress and CSS. I want to change the font color of only my footer widget. I can not get id done. I am using a child theme.
    What code should I put in my custom CSS.
    My website is: https://www.sampathmetaal.nl
    I’am using the Virtue theme.
    Thanks a lot!

Viewing 14 replies - 1 through 14 (of 14 total)
  • Hallo Bigbaas,

    op regel 11 van je .css bestand staat de kleur van je footer.
    #containerfooter h3, #containerfooter {color:#FFFF00;}
    #FFFF00 is de kleur van je footer (geel dus).
    Deze moet je aanpassen met de kleurcode die jij wilt.

    Ik zie dat je een beetje moeite hebt met het opbouwen van een professionele website.
    Daarom beveel ik je AbosIT aan. Dit is een groep studenten die websites en allerlei andere IT-diensten leveren voor een zeer goedkope prijs.
    Zij werken niet voor een standaard prijs, maar kijken eerst wat de klant kan weggeven.

    Misschien handig:)

    Met Vriendelijke Groet,
    Mtpintros

    To change the font color of text in footer widgets add:

    #containerfooter {
        color: #fff;
    }

    Change color code as per your wish.

    Thread Starter bigbaas

    (@bigbaas)

    janmejai, thanks for your answer. I feel like a real noob, but I added the code to my style.css sheet, which looks like this now:
    /*
    Theme Name: Child theme Virtue
    Theme URI: https://www.wphulp.nl/
    Description: Child Theme voor Virtue
    Author: Bas
    Author URI: https://www.wphulp.nl
    Template: virtue
    Version: 1.0
    */
    #containerfooter {
    color: #F7FE2E;
    }

    It doesn’t work out the way I want. What am I doing wrong?

    Change the

    #containerfooter {
    color: #F7FE2E;
    }

    This:
    #F7FE2E
    Is the color of your footer text.
    If you want your footer text to be white for example you have to change the css to:

    /*
    Theme Name:     Child theme Virtue
    Theme URI:      https://www.wphulp.nl/
    Description:    Child Theme voor Virtue
    Author:         Bas
    Author URI:     https://www.wphulp.nl
    Template:       virtue
    Version:        1.0
    */
    #containerfooter {
        color: #FFFFFF;
    }

    Greetings,
    Adil

    Thread Starter bigbaas

    (@bigbaas)

    Thanks for your help Adil. This website is just a start up now and I really like to do it myself, but thanks for the offer anyway.

    I think te “problem” might me the setup of the Virtue theme? Or because it is a widget? In no case the color changed. It was not yellow before and cannot make it white by changing the colour code. It always stays grey likt it is now.

    You actually managed to make the text white, except for the Title.
    So it does work.

    Thread Starter bigbaas

    (@bigbaas)

    I see now! I tried to change the stylesheet at the wrong place. Virtue theme has a special box to enter modifications to the CSS. Thanks for your help!

    Thread Starter bigbaas

    (@bigbaas)

    ??

    No problem!

    Sorry, change it to

    #containerfooter h3, #containerfooter {
        color: #fff;
    }

    I can see the text is changed to White but title isn’t,the above code should solve the issue.

    Thread Starter bigbaas

    (@bigbaas)

    Thanks again! I fixed it now. The main problem is that I was messing around in the wrong Custom CSS Box. I think it depends on the theme you use, where you can change the CSS.
    Problem solved!

    How about CSS for changing the background color of the footer widgets instead of the font color??

    I have the same issue with text visibility – I am using a background image for the footer:

    @aquacait – please start your own thread – this thread is marked resolved.

    You’re also using the premium version of Virtue, so you should ask on the developer’s dedicated support – since you paid it!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Simple question to change font color in footer widget’ is closed to new replies.