Forum
Welcome, Guest
Please Login to access forum.
2 problems (logout and CSS) (1 viewing) 
Go to bottom
TOPIC: 2 problems (logout and CSS)
#4106
Andrea B
Fresh Boarder
Posts: 4
User Offline
2 problems (logout and CSS) Karma: 0  
Hi, I'm testing Istant Facebook Login offline, locally,
I have two main problems.
I know that it's difficult to solve something without seeing the live site, but maybe they're already known issues...

- I use only the FB Login option, continuing to use the standard Joomla Login module as before.
Anyway, when I enter as user through the standard Joomla Login module, I got 2 identical buttons to log out: one for the Joomla module, and one for the Istant FB Login (I guess).
Do you have any idea to solve these duplicated logout button?

- I wanted to use the Module class suffix (Configuration->Advanced) to change margin and padding of the Facebook Login module.
Anyway, setting a class, and writing a rule in my template CSS, doesn't work.
Where should I write the rule?

Thanks, Andrea
 
Logged Logged  
  The administrator has disabled public write access.
#4107
John Dagelmore
Admin
Posts: 3722
User Offline
Re:2 problems (logout and CSS) Karma: 79  
Hi Andrea,

once added a css class suffix in the configuration it will be added to the containing <div> element of the Instant Facebook Login module. Use Firebug or other similar tool to check it.

About the double login button, i would suggest the easiest way to use CSS to hide one of them. You can hide the one of IFBL module for example and leave the one of the regular Joomla module.

Greetings
 
Logged Logged  
  The administrator has disabled public write access.
#4108
Andrea B
Fresh Boarder
Posts: 4
User Offline
Re:2 problems (logout and CSS) Karma: 0  
Hi,
the CSS suffix is solved: it was my fault (I had just to clear the cache).

For the duplicated logout button it's more complex... I don't know how to completely hide it trough CSS, since hiding the block means hiding the Facebook Login button too...
 
Logged Logged  
  The administrator has disabled public write access.
#4109
John Dagelmore
Admin
Posts: 3722
User Offline
Re:2 problems (logout and CSS) Karma: 79  
Hi,

it's easy use this CSS:

Code:

#jfbl-logout-form div.logout-button { display: none; }
Of course remember to clear the cache even in the browser
 
Logged Logged  
  The administrator has disabled public write access.
#4110
Andrea B
Fresh Boarder
Posts: 4
User Offline
Re:2 problems (logout and CSS) Karma: 0  
Ok,
thanks, I'll try it!
 
Logged Logged  
  The administrator has disabled public write access.
#4116
Andrea B
Fresh Boarder
Posts: 4
User Offline
Re:2 problems (logout and CSS) Karma: 0  
It works fine using just the id:
#jfbl-logout-form { display: none; }
 
Logged Logged  
  The administrator has disabled public write access.
Go to top