How to override display= none
Rate this topic: ![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_light.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
1.00 out of 6 based on 1 vote(s)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_light.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
![Evaluations: 1, 1.00 on the average. Evaluations: 1, 1.00 on the average.](/forum/styles/metro_blue/imageset/evaluation_dark.gif)
- GK User
- Mon Aug 10, 2015 3:23 am
- Reply with quote
- Report this post
In the mobile.css there is
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?
- 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?
-
- 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.
-
- 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:
will that revert everything to the template.css ?
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 ?
-
- 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.
-
- Moderator
4 posts
• Page 1 of 1