× Joomla Facebook Connect support forum

Topic-icon JFBLogin module problem

Active Subscriptions:

None
13 years 10 months ago #3911 by fb_100000370565780
Hi..
I have problem with you login module.. in the pages where there is already a form is good as in this picture:
File Attachment:


while the other pages it seems like in this picture:
File Attachment:


Can you help me please?
Thanks
The topic has been locked.
Support Specialist
13 years 10 months ago #3913 by alzander
Replied by alzander on topic JFBLogin module problem
The JFBCLogin module does not use it's own stylesheet. It inherits styles from your template or from any included stylesheets on the page. The only reason the module would look different depending on the page is that there are different styles depending on the page your on, likely from an included stylesheet for the specific component being displayed.

While this doesn't fix your issue directly, hopefully, it helps you narrow down the cause. If you can't find it, feel free to link to 2 pages, and we can quickly tell you where the different styles are coming from.
The topic has been locked.
Active Subscriptions:

None
13 years 10 months ago #3927 by fb_100000370565780
Thanks for the answer alzander..
Sorry, I know that the problem is not in your module but I was not able to trace the problem
even using Firebug and did not know who to ask. I went around the problem (not resolved)
by removing the 2 "br /" in form and stretching the input (username and password) to make
them go on the other line. This is my site if you can help me solve the problem:
www.tuttotesti.com
The topic has been locked.
Support Specialist
13 years 10 months ago #3942 by alzander
Replied by alzander on topic JFBLogin module problem
The reason the checkbox is moved to the lower line (on the Community Page at least) is because of this line:
label {
display:block;
}
In www.tuttotesti.com/components/com_commun...efault/css/style.css

display:block makes the contents of that line by by itself, and moves any other content to the next line. (Not the real CSS definition, but close)

I'd recommend adding the following to your template stylesheet, which should fix the issue:
#tpblock-left label {
display:inline;
}

It doesn't seem like anything else on the sidebar is using labels, but if so, this could cause other issues.

Hope this helps!
The topic has been locked.
Active Subscriptions:

None
13 years 10 months ago #3946 by fb_100000370565780
Thanks alzander :-)
The topic has been locked.