Advertisement:

Author Topic: (SOLVED)Osclass Wizards Change colour of footer and search box  (Read 495 times)

AndyB123

  • Newbie
  • *
  • Posts: 24
(SOLVED)Osclass Wizards Change colour of footer and search box
« 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!
« Last Edit: February 21, 2018, 02:50:53 am by AndyB123 »

WEBmods

  • Hero Member
  • *****
  • Posts: 937
  • github.com/webmods-croatia/love-osclass/ | patrick
Re: Osclass Wizards Change colour of footer and search box
« Reply #1 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.

AndyB123

  • Newbie
  • *
  • Posts: 24
Re: Osclass Wizards Change colour of footer and search box
« Reply #2 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?

WEBmods

  • Hero Member
  • *****
  • Posts: 937
  • github.com/webmods-croatia/love-osclass/ | patrick
Re: Osclass Wizards Change colour of footer and search box
« Reply #3 on: February 21, 2018, 12:57:41 am »
If it doesn't work with "!important" try to clear your cache.

Regards.

AndyB123

  • Newbie
  • *
  • Posts: 24
Re: Osclass Wizards Change colour of footer and search box
« Reply #4 on: February 21, 2018, 01:08:19 am »
done thank you! worked with !important

Thank you so much!

AndyB123

  • Newbie
  • *
  • Posts: 24
Re: Osclass Wizards Change colour of footer and search box
« Reply #5 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

AndyB123

  • Newbie
  • *
  • Posts: 24
(SOLVED)Osclass Wizards Change colour of footer and search box
« Reply #6 on: February 21, 2018, 02:50:16 am »
SOLVED THANKS!