Osclass forums

Support forums => Themes => Topic started by: AndyB123 on February 20, 2018, 10:27:09 pm

Title: (SOLVED)Osclass Wizards Change colour of footer and search box
Post by: AndyB123 on February 20, 2018, 10:27:09 pm
Hi, using Osclass Wizards. I would like to change the colour of my theme. I know I can do this in admin but I would like to change the black background of the search box and also the black background colour of the footer. Can someone please help? I believe it may be in main.css but I dont know for definite or which line these relate to. Thanks in advance!
Title: Re: Osclass Wizards Change colour of footer and search box
Post by: WEBmods on February 21, 2018, 12:20:21 am
Hello,

For search background use this ID: #form_vh_map, and for footer background use #footer ID.

So something like this should be added to your CSS:
Code: [Select]
#form_vh_map {
    background-color: red;
}
#footer {
    background-color: blue;
}
BTW, if it won't work, try to add "!important" after color.

Regards.
Title: Re: Osclass Wizards Change colour of footer and search box
Post by: AndyB123 on February 21, 2018, 12:54:37 am
Hi there, thanks for reply.
I inserted this to the bottom of my main/css with no effect. I also tried to use hex colours.

Any other suggestion?
Title: Re: Osclass Wizards Change colour of footer and search box
Post by: WEBmods on February 21, 2018, 12:57:41 am
If it doesn't work with "!important" try to clear your cache.

Regards.
Title: Re: Osclass Wizards Change colour of footer and search box
Post by: AndyB123 on February 21, 2018, 01:08:19 am
done thank you! worked with !important

Thank you so much!
Title: Re: Osclass Wizards Change colour of footer and search box
Post by: AndyB123 on February 21, 2018, 01:22:52 am
just one slight issue. please see my site www.tradesconnect.ie here. There is still black parts showing on search bar
Title: (SOLVED)Osclass Wizards Change colour of footer and search box
Post by: AndyB123 on February 21, 2018, 02:50:16 am
SOLVED THANKS!