• Resolved ashvin090

    (@ashvin090)


    Hello,

    Thank you for the help on the previous thread.

    I need some help to change to colour of the text inside the buttons. Also how would I go about changing the icons such as email and telephone on this page: https://newlabelsmarketing.com/#post-7

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    For the icons, you can use the following. The images/icons you use should be the same size as the current icons. Replace URL_OF_IMAGE between the quote marks with the url of the images you upload to your media library.

    .fa-phone::before {
    	content: url('URL_OF_IMAGE');
    }
    .fa-envelope-o::before {
    	content: url('URL_OF_IMAGE');
    }

    For the text in the contact form submit button, the following will allow you to change the color.

    .contact-submit input[type="submit"] {
    	color: #cc0000;
    }
    Thread Starter ashvin090

    (@ashvin090)

    Thank you for the help! Really appreciate it!

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You are welcome.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change colour of text in buttons’ is closed to new replies.