How to override display= none

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Mon Aug 10, 2015 3:23 am
Reply with quote
Report this post
In the mobile.css there is
Code: Select all
#gkTopBar,
#gkMenuWrap #gkTopBar {
   display: none;
}

I want to make this visible. I know I can comment out that line, but I prefer to use override.css.
What can I do?
User avatar
Expert Boarder

GK User
Mon Aug 10, 2015 5:56 am
Reply with quote
Report this post
Code: Select all
display:block;

is what you are searching for.
User avatar
Moderator

GK User
Mon Aug 10, 2015 2:35 pm
Reply with quote
Report this post
Yes, but how do I use it? Do I need to use @media?
I assume the order of loading is template.css -> mobile.css -> override.css ??
So if I write in override.css:
Code: Select all
#gkTopBar,
#gkMenuWrap #gkTopBar {
   display: block;
}

will that revert everything to the template.css ?
User avatar
Expert Boarder

GK User
Tue Aug 11, 2015 7:19 pm
Reply with quote
Report this post
override.css is loaded as last file so every declaration made in this file will have more "power" over declarations in other files if same css selector is used.
User avatar
Moderator


cron