简体   繁体   中英

Where to edit footer color in Wordpress Flash theme?

The purpose is to change the colour of the text in the footer of my Wordpress site. At the footer you can see the color of the text is black and not visible.

Wondering where do you insert the code below to edit in CSS the FLASH themes to change the text color of the footer?

Can't seem to post image, so link of image is here

On my Computer Repairs website, I've tried addinto into style.css, but nothing seems to change

.site-footer {
    color: #fff;
}

Was expect the text to be white, but it is still showing up as dark color when adding the code above. Perhaps I'm adding in the wrong section

Try to add !important to the end of CSS value to overwrite original styles. And you can do it through the admin interface by clicking "Customize" and then "Additional CSS".

 Add below css code into your current active child theme's style.css file or you can add additional css option in theme customizer. .site-footer { background-color: #fff; color: #000; } .site-footer a { color: #000; } Hope this will helps you. Thanks. 

Virtual Credit Card

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM