No, there's not a setting to control this order. You can possibly do this with some CSS styling or create a template override for the module's /tmpl/logout.php file to change what's displayed first. I attempted to log in our your site to see if I could figure out some quick CSS to do this, but the My Account menu was not displaying for me after creating a user.Is there a setting I missed to control the order of display? I'd like to have the menu item display first, and logout buttons second.
No, the link to the social profile goes to the social network's profile page that you logged in with, not the third party profile extension on your site. So in my case, I created my user with FB credentials, so when I click the avatar, it goes out to my profile page on Facebook.Update after i first posted above:
Just tried using the profile pic setting which corrects the order of display:
screencast.com/t/v7j9XAbwUDg
but the pic doesn't link to the profile page even though I've set it to do so. See:
screencast.com/t/quvP8Y2ThNf1
.sclogin .sclogout-button {
float: right;
margin-right: 5px;
}.scuser-menu.dropdown-view a.btn {
background-color: #FFFFFF; /* Replace with your desired color */
}Can you try also adding these two styles:Your instructions for the first part gave a line number so I knew exactly where to make the change and I did. The button now seems more to the left but it's somehow still below the "logout" button.
.sclogin {
float:left;
}
#login-modal .sclogin {
float:none;
}I didn't go for the color change as the line to make the change wasn't clear. I'd like it to match the color of the login button, which is white text on green background. What line number would I find those colors (also in case i want to change both button colors in the future.)
.scuser-menu.dropdown-view a.btn{
background-color: #46b277;
color: #FFFFFF;
}
.scuser-menu.dropdown-view a.btn:hover {
background-color: rgba(70,178,119,0.6);
}Join our newsletter to get alerts for Joomla releases, tips and tricks and extension updates.
