• ung_154

    (@ung_154)


    Hi,

    I’m looking to change the font colour of the phone number and email address that displays above the top navigation. Also, am looking to remove the ‘simpleo theme powered by wordpress’ in the footer. Please help.

    Thanks!

    True Novice

Viewing 9 replies - 1 through 9 (of 9 total)
  • CypressWebs

    (@jmeyer2485)

    In you child theme or CSS Editor try the following code:

    .phone-box .top-email, .phone-box .top-email a {
        color: #8DB529;
    }
    Thread Starter ung_154

    (@ung_154)

    Perfect. Thank you!

    CypressWebs

    (@jmeyer2485)

    IN A CHILD THEME edit the following code.

    For the copyright under Appearance click Editor.

    On the right look for Copyright.php.

    Remove this code:

    <span class="right"><a title="<?php _e('Simpleo Theme','simpleo'); ?>" target="_blank" href="https://vpthemes.com/simpleo/"><?php _e('Simpleo Theme','simpleo'); ?></a><?php _e(' powered by','simpleo'); ?><a title="<?php _e('WordPress','simpleo'); ?>" href="https://www.ads-software.com/"><?php _e('WordPress','simpleo'); ?></a></span>

    WPyogi

    (@wpyogi)

    That kind of change should be made in a child theme – please advise people accordingly!

    EDITED – I see you changed your post – thanks though a child theme will not have that file unless a copy of it is added to the child theme.

    WPyogi

    (@wpyogi)

    @ung_154 – if you are modifying theme files, your changes will be lost when the theme is updated – do you have a child theme set up?

    https://codex.www.ads-software.com/Child_Themes

    Where are you making CSS changes?

    Thread Starter ung_154

    (@ung_154)

    Thanks for the advice. I’m a super novice and didn’t know about child themes. I was making the change to the stylesheet (appearance > editor).

    CypressWebs

    (@jmeyer2485)

    Like @wpyogi said make a child theme.. plenty of videos on the web on how to do that.

    I personally use a CSS Editor plugin to edit my CSS… But that’s me.

    WPyogi

    (@wpyogi)

    Yep, that’s what I was afraid of :)! I’d really suggest you move your changes to a child theme or use a Custom CSS plugin if you only want to make CSS changes. You can use CSS to hide the simpleo theme powered by wordpress in the footer too – if you can post a link to your site, someone can give you the code to use.

    CypressWebs

    (@jmeyer2485)

    @wpyogi Is right.. I should have advised you better on the child theme.

    Here is the code for CSS to remove the copyright link.

    .copyright-wrap span.right {
         display: none;
    }

    I would suggest a easy good CSS plugin but not sure if I would get into trouble… @wpyogi?

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Changing font colour in top email/phone’ is closed to new replies.