• Resolved Yessicarr

    (@yessicarr)


    Hello
    I want to change the colours of the letters.
    “www.deconse.es”
    The contained letters are in grey and i want to see in white
    i don′t know that CCS i have to change

Viewing 3 replies - 1 through 3 (of 3 total)
  • if you only want to change color of box in blue background you should paste following code in your stylesheet

    .page-content {
        color: #FFF;
    }

    if you want whole site font then in your stylesheet there is following code you need to change color

    body, button, input, select, textarea {
        color: #404040;

    change #404040 to #FFFFFF

    if you know about child theme style.css you can paste there otherwise you can do in

    wp-content/themes/argent/style.css

    Note: changing main theme style.css is not considered the update safe customization.

    Thread Starter Yessicarr

    (@yessicarr)

    Wow! thanks you very much!

    Thanks for helping out, codemovement.pk.

    Yessicarr – I see that you’re using a custom CSS plugin so you’re all set.

    Anyone else reading this in the future, don’t edit the theme files directly, otherwise your changes will be overwritten every time the theme is updated to the latest version.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘argent: how to change the colour letter's from all pages of my web’ is closed to new replies.