• Resolved smoothb1

    (@smoothb1)


    How can i change the colour of the font in my search box on https://www.originbmxco.com

    This is my Search.php

    [moderated: huge chunk of code removed. please use a pastebin for posting larger amounts of code. it keeps it readable, and is conform with the forum rules

    btw: formatting issues can normally be sorted having a link to your site]

Viewing 2 replies - 1 through 2 (of 2 total)
  • edit grey.css of your theme (/wp-content/themes/jenny/styles/grey.css):

    and find:

    #searchform input:focus{
    	color:#444;
    	background:#FFF url(images/search.png) no-repeat -3px -3px;
    }

    this is the style for the search text if you are typing words into it.
    dark grey at the moment – change it to a color of your choice.

    before this style, add:

    #searchform input{
    	color:#444;
    	background:#FFF url(images/search.png) no-repeat -3px -3px;
    }

    this defines the default text color before you type.
    was pale grey – the above will change it to dark grey, or use a color of your choice.

    Thread Starter smoothb1

    (@smoothb1)

    Thanks done it now ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Search Font Colour’ is closed to new replies.