Topic-icon Just Subscribe

Active Subscriptions:

None
14 years 1 month ago #22135 by simon
Just Subscribe was created by simon
My login / register page is sooo messy

Can you help me ?

Can i use buttons from my template ?

File Attachment:


Can i change link to this page ? Now is something like : component/jfbconnect/?view=loginregister&return=L2NvbW11bml0eQ==
The topic has been locked.
Support Specialist
14 years 1 month ago #22136 by alzander
Replied by alzander on topic Just Subscribe
Simon,
The buttons on that page have a class of "button", which is standard for Joomla. Where your template has the class definitions for the buttons you want to use, simply add .button to the declaration, and the page should then take on those styles.

There are styles on each of the labels on that page, which you can use to float the labels and inputs left as necessary. Each template is different, so it's impossible for us to give you the exact styles to add. If you need more help though, just let us know.

As for the link, if you're using an SEF extension that allows you to change the link, you can. However, you can't directly link to that page from anywhere. The user needs to click the "Login With Facebook" button first, which then JFBConnect will redirect to that page.

Hope that makes sense, but if you have any other questions, just let us know,
Alex
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #22138 by simon
Replied by simon on topic Just Subscribe
This is my website :
goo.gl/I09b8

Can you help me with the login Page ?
The topic has been locked.
Support Specialist
14 years 1 month ago #22139 by alzander
Replied by alzander on topic Just Subscribe
Sure. Can you tell me what you want to do?

In the image, you have the username and password labels circled. What's wrong with them? What would you like them to look like?

You mention the buttons don't use your template button styles. Where is a button on your site we can look at?

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #22140 by simon
Replied by simon on topic Just Subscribe
This is the button style
goo.gl/ncy3d

username and password labels i want them to be like this (up front)
File Attachment:
The topic has been locked.
Support Specialist
14 years 1 month ago #22143 by alzander
Replied by alzander on topic Just Subscribe
Buttons:
1) Copy /components/com_jfbconnect/views/loginregister/tmpl/default.php to /templates/<YOUR_TEMPLATE>/html/com_jfbconnect/loginregister/default.php (create any directories necessary)
2) Edit the file you just created
3) Search for "<form". You'll find it twice.
4) In both locations, add 'class="style"', so it looks like <form class="style" .... (whatever is already there).

Labels:
I'm working on the best way to change the labels to make them horizontal. All are easy, except the "*Required Fields" label is causing issues.

Will let you know when we come up with something, but make the button change for now, which looks pretty good.

Thanks,
Alex
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #22144 by simon
Replied by simon on topic Just Subscribe
Done with the Buttons !

Thank you soo much ! Looking good

File Attachment:
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #22162 by simon
Replied by simon on topic Just Subscribe
I change some of the Text in Login Page i don't know if this can help... We can move *Required Fields" at the bottom if this will help ? Can i make * to be red color ?

Thanks
The topic has been locked.
Support Specialist
14 years 1 month ago #22187 by alzander
Replied by alzander on topic Just Subscribe
Simon,
If you can remove or move that "* Required Fields" label, the below code should make things inline and set the Required Fields text red. Just add it to your CSS file:
#jfbc_loginregister dt {
float: left; /* Make them inline */
}
#jfbc_loginregister_existinguser dd {
margin-left: 80px; /* space the label and text field out on the left hand form */
}
#jfbc_loginregister_newuser dd {
margin-left: 130px; /* space the label and text field out on the right hand form */
}
#jfbc_loginregister .red, #jfbc_loginregister .star {
color: #FF0000; /* Make stars red */
}

Hope that all helps!
Alex
The topic has been locked.
Active Subscriptions:

None
14 years 1 month ago #22205 by simon
Replied by simon on topic Just Subscribe
Thank you for this . It is working
The topic has been locked.