Tonya
|
We can’t get any of the css to apply. Default, white, black, none — they all look exactly the same on our site. Of course, it seems that our theme is overriding it somehow, but how do we fix this? The only problem we have is the buttons are too light to be seen…. http://lighthouseintercessors.com/register/
We’ve changed the css in profile-builder-pro files to use a different hex color and to use a different btn.png file but nothing is affecting the page.
Please advise!
|
Gabriel Barina
|
Hello Tonya,
in the file style.css (line 1584) you have the following property:
.submit {
border: 0 none;
}
I added the following properties, and it changes:
.submit {
background: none repeat scroll 0 0 red;
border: 0 none;
color: black;
}
Hope this helps,
Gabriel
|
Tonya
|
That worked. Thank you for finding it for me. I was able to integrate it into the different color pickers css sheets.
|
Gabriel Barina
|
Be warned though: when you update the plugin, the changes made will be lost.
Gabriel
|
Mike
|
I’m having the same issue.. I can see front.end.white.css loading but for some reason the color is overridden by the style.css file. Most of it works but error messages show up formatted (not red).
Any ideas?
http://goremoteapp.com
|
Gabriel Barina
|
Hello Mike,
Thank you for your bug report!
I will issue an update these days, but until then you can do the changes, if you want:
on line 87 change this(in front.end.white.css):
.warning, .error {
color: red;
}
to this:
.warning, .error {
color: red !important;
}
Gabriel
|