By Stefano Virgilli on Wednesday, 09 October 2019
Posted in General Issues
Likes 0
Views 437
Votes 0
Hi, where can I edit the style of this menu?
Hey there,

This requires Custom CSS to change the styling of it.

The file that renders it is at JoomlaFolder/components/com_easysocial/themes/wireframe/toolbar/default.php line 29 - 179.

If you want to edit something, you need to copy the default.php file from JoomlaFolder/components/com_easysocial/themes/wireframe/toolbar/default.php and paste it at template override location which is at JoomlaFolder/templates/yourCurrentTemplate/html/com_easysocial/toolbar/default.php.

Take note that you need to create the folders manually if you don't see it.

Then, you can start to edit the default.php which is from the template override location.
·
Thursday, 10 October 2019 11:16
·
0 Likes
·
0 Votes
·
0 Comments
·
I was referring more to a CSS editing than a structure editing...
·
Thursday, 10 October 2019 14:02
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

Which part of styling are you trying to change?
·
Thursday, 10 October 2019 15:29
·
0 Likes
·
0 Votes
·
0 Comments
·
The colour of the buttons, the corner radius, perhaps the icons if FA and the color of the icons.... maybe the color of the background too
·
Thursday, 10 October 2019 16:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

You can add the following Custom CSS code into Backend > EasySocial > Themes > Custom CSS:

/* color of the FA icons */
body #es.es-dialog.is-mobile .es-dialog-content .o-nav.es-toolbar__o-nav .o-nav__item i {
color: green;
}

/* the background color of the buttons */
body #es.es-dialog.is-mobile .es-dialog-content .o-nav.es-toolbar__o-nav .o-nav__item a{
background-color: yellow;
}


Take note that you need to clear all of your caches before you see the changes.

May I know what do you mean 'the corner radius'?
·
Friday, 11 October 2019 11:35
·
0 Likes
·
0 Votes
·
0 Comments
·
defining the radius of the corner with the CSS rule border-radius
What else?
·
Friday, 11 October 2019 11:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Can you point me to the actual CSS file, so that I see all the rules in one go?
·
Friday, 11 October 2019 12:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey there,

defining the radius of the corner with the CSS rule border-radius


You can use the following Custom CSS code for it:


/* the background color of the buttons */
body #es.es-dialog.is-mobile .es-dialog-content .o-nav.es-toolbar__o-nav .o-nav__item a{
background-color: yellow;
border-radius: 25%
}


Can you point me to the actual CSS file, so that I see all the rules in one go?


We do not recommend our customers to modify the styling at the EasySocial core CSS file because it will be very difficult to maintenance after you update it to the next version.
·
Friday, 11 October 2019 13:40
·
0 Likes
·
0 Votes
·
0 Comments
·
Oh, I would not change the CSS, of course... I just want to know where is it, so that I can override the classes that I need to override... I tried to locate it using Chrome inspector, but I could not locate where the rules come from, hence I am unable to have all the rules at a glance for me to play around with... I don't want to ask you one by one as I decide which visual aspect I want to change...
·
Friday, 11 October 2019 16:44
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks anyway, I figured out the structure.
·
Friday, 11 October 2019 17:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.

Thanks for understanding.
·
Friday, 11 October 2019 17:40
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post