• [email protected]

    (@marvingmullergmailcom)


    Good day

    I have added a template theme to my website,however I am really struggling to change the font colour to black by editing the CSS file.

    Also towards the very bottom there is a white footer,how would I be able to remove that completely and let my background image take it’s place?

    A huge thanks in advance to any information that helps.

Viewing 4 replies - 1 through 4 (of 4 total)
  • It’s not possible to help with any CSS questions without seeing your site. You should also post in your theme’s dedicated sub-forum via its page here:

    http://ww.wp.xz.cn/themes/

    BTW, modifying theme files isn’t a good idea – your changes will be lost when the theme is updated. Instead use a child theme or custom CSS plugin.

    Thread Starter [email protected]

    (@marvingmullergmailcom)

    Not all the concerned about any future updates to be honest. Dont plan on using the same theme forever. I searched under my themes sub-forum,however there isnt much information there.

    Would you mind having a look at my site? http://www.coupalot.com

    Hi,

    I do understand that you are not concerned about future updates and respect that. Though, you still might want to have a look at creating child themes as it is really a good habbit and you’ll already know it for your next theme. It only takes 5 minutes to setup a child theme.

    With your theme, there could be a place where you can put some custom css. There, you’ll be able to add

    body {
    color: #000;
    }

    which will make all your text pure black. You might want to read about not using pure black text for readibility reasons.

    For the white footer, try using this along with your custom css

    .allinone {
    background: transparent;
    }
    
    .footer {
    background: transparent;
    border-top: none;
    }

    Hope this helps.

    Not updating a theme is likely to eventually run into compatibility problems, so that’s not a good strategy. If your theme does not have Custom CSS as an option, just add that via a plugin.

    For further help, you should contact the developer of your theme as commercial themes aren’t supported here.

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

The topic ‘Changing Font Colour’ is closed to new replies.