Support Forum
its because of your wp theme advocate...
It is globally applying to all pages, a style on labels in styles.css line 1638
label {
color: #AAAAAA;
font-weight: normal;
left: 15px !important;
position: absolute;
top: 7px !important;
}
its being way too greedy...
The real problem is the position absolute...
so you need to either update the wp theme or update the sp theme css to force our css to overwrite the greedy wp theme... in or reset.css or the main theme file, you could add
#spMainContainer label {position: relative}
that will then take care of the wp theme... of course, we recommend you own sp theme instead of editing ours... see: http://codex.simple-press.com/.....g-a-theme/
Visit Cruise Talk Central and Mr Papa's World
glad it worked for you! happy to help! thanks for the kind words!
Visit Cruise Talk Central and Mr Papa's World
so are you running any other kind of login or registration plugin?
there is some js running on your site that is forcing a style of display:none on the input elements... not sure, but think its your wp theme.. and some js its running called infieldlabel... something for twitter...
you can verify my hypothesis by a quick change to the wp default theme and see if it clears up... then we can try to find the exact conflict...
Visit Cruise Talk Central and Mr Papa's World
You are correct. I activated another theme and the log in worked correctly. Can you tell what I need to change?
I am also running another plug-in that is taking over the css of all logins called White Label Branding. How do I make sure that the simple-press login css is not being overwritten?
Thanks Again!
not sure why they are being so greedy... likely sloppy coding on their part thinking there would only ever be a login form on the wp login page... but most folks have them in sidebars, footer, etc...
at this point, might be simplest to go grab the plugin organizer plugin... and then dont let those plugins run on the forum page...
Visit Cruise Talk Central and Mr Papa's World
not sure what you mean.. you have plenty of other plugins active on the forum page...
yoast seo, sendpress, special recent post, etc etc just to mention a few...
but its not a css issue... there is some javascript running that is setting display:none on the input when selected... actually when one starts typing... in fact, in the upper left of your browser, in a little white box, the word derekpierce1 appears... so something with js definitely at work here...
so try a quick temp change to the default wp theme and see if still a problem... if not, then some theme js getting in the way...
It is improperly loading its own version of jquery ui instead of the version that ships with WP...
<script type='text/javascript' src='http://nm-mcpa.org/wp-content/themes/advocate/javascripts/jquery-ui-1.8.14.js?ver=3.4.2'></script>
sorry, but not cool.. should just use the wp version and a recipe for problems with plugins...
Visit Cruise Talk Central and Mr Papa's World