Ok, thanks, so this works , for the size of image :
/* Avatar login CB ok*/
.uk-navbar-item.classecb {
max-width: 90px;
}
To let you know, this works better not to have space in the hidden field
.mylogincb{
display: none;
}
Only issue is that while pointing to this
index.php?option=com_comprofiler&view=login
The CSS is applied into the component view.
And I'd like not to (or have a different css applied here)
I'm trying to apply the css to the menu link rendered page, added the class
mylogincbcomponent
, but how can I access the property
mb-2 mod-login-logout__login-avatar login-avatar cb_template cb_template_default
From that class from the component menu link ?
I tried this, but no luck
.mylogincb.componentmb-2 mod-login-logout__login-avatar login-avatar cb_template cb_template_default{
display: true;
}
.componentmb-2 mod-login-logout__login-avatar login-avatar cb_template cb_template_default.mylogincb{
display: true;
}
Thanks
J! 4.x - CB 2.7.3