It looks like you're new here. If you want to get involved, click one of these buttons!
Chanux
✭✭
if you using vanilla dealt theme, you can find the vanilla css in this directory
your vanilla folder\applications\dashboard\design\style.css
you can find this code in style.css
.Meta .HasNew {
position: absolute;
left: 100%;
top: 22px;
margin-left: -18px;
white-space: nowrap;
}
add this code in to { }.
display:none;
whu606
I'm not a SuperHero; I just like wearing tights... MVP
You REALLY shouldn't edit core Vanilla files - you are asking for trouble when they upgrade.
To make css or other changes, create a theme:
http://vanillaforums.org/docs/themequickstart
Then make the changes Chanux suggested in the custom.css file.
The only rules that need to be in the custom.css file are the ones you add.
Answers
@whu606 thanx for advising. i added a new boxes and logos customizing default.master.php. can i do this thing using another way..?
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •@Chanux Yes you can. Just copy the default.master.php file into your new theme's view folder. Then make the changes you want. The theme will load up this file instead of the core file.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •@Stewartiee thank you so much. i'll try now.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •I don't know why but my style.css of my custom theme doesn't have .HasNew. My "1 New" button only has
<strong>1 New</strong>in source code.- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •@rornvi
Your custom.css should be empty EXCEPT for the rules you want to change.
You don't need to copy over all the rules from style.css to your custom.css - it just makes it hard to see what you're doing.
Use Firebug in Firefox or a similar tool to find the class of the element you want to change, then add a rule to affect that in your custom.css file.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •