By Vincent Robert on Friday, 15 September 2017
Posted in General
Likes 0
Views 813
Votes 0
Hi, I like the default easy discuss login form on pages (see screenshot). Is it possible to have this as a module so I can publish as a module or as a menu link? The default joomla login module is ugly.
Hey Urzh,

Hm, unfortunately this cannot be converted into a login form but you could try using the "EasyDiscuss Welcome Module", although it doesn't really have the exact layout though.
·
Friday, 15 September 2017 01:24
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks. Can you recommend something better to edit and manage registration fields for new users? The default joonla fields are poor and don't match what EasyDIscuss might other show for new accounts. I'm trying to find the best solution for this.
·
Friday, 15 September 2017 01:34
·
0 Likes
·
0 Votes
·
0 Comments
·
You can enable this plugin Easydiscuss Profile from your backend, so it will show the Easydiscuss field into Joomla registration form, you can refer on my attached screenshot below.

Hope this will help.
·
Friday, 15 September 2017 11:38
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks. Can you see here http://snapchatmemories.com/register how the fields are stretched for some reason on desktop?
·
Saturday, 16 September 2017 20:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey urzh,

Hm, could you try to add these codes into the custom.css file?

[gist]
body .form-horizontal .control-label {
text-align: left;
}
[/gist]
·
Saturday, 16 September 2017 23:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks, it does not appear that has worked. I also have an issue with my mobile menu now, please see screenshot.
·
Monday, 18 September 2017 20:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Try this :


body .form-horizontal .controls input[type="text"] {
width: 100% !important;
}
·
Tuesday, 19 September 2017 11:48
·
0 Likes
·
0 Votes
·
0 Comments
·
It has fixed form but not mobile menu. Here is my current CSS file attached.
·
Tuesday, 19 September 2017 20:01
·
0 Likes
·
0 Votes
·
0 Comments
·
It seems like i misunderstand your issue in earlier, can you provide us with your Joomla backend and FTP access at your first post so we can better have a check?
·
Tuesday, 19 September 2017 20:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi, yes. Backend is open. Also, you can edit any and all CSS files using Components -> ProFiles

snapchatmemories.com/administrator

support1 // support1
·
Tuesday, 19 September 2017 21:21
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

I've checked further again, the reason why it populate that menu like this on mobile layout is because you display this menu module on this module position 'position-0' which is not support collapsed menu styling.

I would suggest to display your current menu module to this module position 'position-menu' so it will display correctly.

If you do not want display this header bar on the top, you can apply this following css into Echo custom.css file.


body.echo .navbar {
display: none !important;
}
·
Wednesday, 20 September 2017 15:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Ah thanks! I think I put it in positon-0 originally because I wanted the yellow header on the desktop. So, should I just publish a new menu item and have it display desktop only for position-0? I changed to position-menu now and on desktop there is no more yellow header (which I would like).

Thanks.
·
Wednesday, 20 September 2017 23:19
·
0 Likes
·
0 Votes
·
0 Comments
·
You're welcome.

I already added this following css into your Echo template custom.css file, it should show the yellow colour on the menu bar now.


body.echo .navbar {
display: none !important;
}

@media (max-width:768px) {
body.echo .navbar {
display: block !important;
}
}

.echo .echo-menu:before {
background-color: yellow !important;
}
·
Thursday, 21 September 2017 12:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks. And I see and understand what you have done. Please close this request.
·
Friday, 22 September 2017 07:33
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Friday, 22 September 2017 08:55
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post