Skip to main content
Topic: BeSocial! .active buttons in menu (Read 2235 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

BeSocial! .active buttons in menu

Is there a way to make the menu items active like in the Light! variant? I tried to add few (well, more than a few) classes, but it doesn't seems to be working for me. I'm not talking about the admin items, but the actual fixed menu on the top.

Re: BeSocial! .active buttons in menu

Reply #1

When I was making some changes in BeSocial variant I had to add style under
Code: [Select]
#main_menu .active, #main_menu .linklevel1:hover, #main_menu .listlevel1:hover .linklevel1, #main_menu .linklevel1:focus
and force it with !important


Now when I look at this part I think that there is one class missing, that's why style needs to be forced.
Code: [Select]
#main_menu .active
should be
Code: [Select]
#main_menu .listlevel1 .active

Re: BeSocial! .active buttons in menu

Reply #2

I was modifying this class, but it didn't work, because as you said one part of the code was missing. I added this:
Code: [Select]
#main_menu .listlevel1 .active

and everything works fine! Thank you.

 

Re: BeSocial! .active buttons in menu

Reply #3

I am using that in FaceIt (based on BeSocial) as well.