I can see the issue when I turn on the SCLogin and JFBCSystem plugins. There seems to be a conflict with our auto-complete CSS that's loaded in our sc_bootstrap.css file, but it's difficult to tell as that CSS is applied through Javascript accidentally from JomRes.
The easiest test to fix is to edit the /media/sourcecoast/css/sc_bootstrap.css file. About 50 lines from the very bottom, you'll see the following lines:
/* UI Autocomplete - Used for Open Graph Action popups
Layout helpers
----------------------------------*/
.ui-helper-hidden {
display:none;
}Please add a /* in front of the .ui-helper-hidden { line, like:
And then, at the very bottom of the file, add */, like:
#autocomplete-fields .ui-autocomplete li img {
border:0;
display:block;
position:absolute;
height:32px;
width:32px;
left:6px;
}
*/That will hide/comment out all of our CSS that relates to the UI classes and should fix your issue. Make sure you clear your browser cache before testing again.
Thanks, and good luck,
Alex