Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Modifying vanilla.css - IE problems
First of all, a hello to all the members here. So - HELLO
Any chance that someone german speaking is here who knows everything about modifying the vanilla.css for the vanilla standard theme and is a HTML and CSS Guru?
If not lets try if my english is good enough to describe my problem.
I'm currently trying to create a new style for our german-speaking vanilla forum dealing with Inkscape (vector drawing) under Inkscape-forum.de
As far as I understand it, vanilla provides a way to specify three different background colors to a discussion. One for "Unread" which is located under
I specified three different colors for these three states.
Now to the problem. Opera and Firefox are displaying this correct. Means I'm seeing all three colors. But I have problems with IE >= 6.0. IE is only showing two colors. The ones for "Read with new comments" and "Read with no new comments". The color for unread is never shown.
Do you understand my problem? I uploaded all necessary files to a test account and changed the stylesheet by the provided extension within the forum, if this is important to know.
Cheers
Inkscape
Any chance that someone german speaking is here who knows everything about modifying the vanilla.css for the vanilla standard theme and is a HTML and CSS Guru?
If not lets try if my english is good enough to describe my problem.
I'm currently trying to create a new style for our german-speaking vanilla forum dealing with Inkscape (vector drawing) under Inkscape-forum.de
As far as I understand it, vanilla provides a way to specify three different background colors to a discussion. One for "Unread" which is located under
#Discussions li ul
Another one for "Read with no new comments" under #Discussions li.Read ul
and the third one for "Read with new comments" under #Discussions li.Read.NewComments ul
I might be wrong about this because I'm still a beginner dealing with CSS Code.I specified three different colors for these three states.
Now to the problem. Opera and Firefox are displaying this correct. Means I'm seeing all three colors. But I have problems with IE >= 6.0. IE is only showing two colors. The ones for "Read with new comments" and "Read with no new comments". The color for unread is never shown.
Do you understand my problem? I uploaded all necessary files to a test account and changed the stylesheet by the provided extension within the forum, if this is important to know.
Cheers
Inkscape
0
This discussion has been closed.
Comments
Replace:
#Discussions li.Read.NewComments ul
with:
#Discussions li.Read .NewComments ul
#Discussions li.Read .NewComments ul
Well this displays the "Unread" color within IE but not all three colors. Now it's the backgroundcolor for "Unread" and "Read with no new comments". It even breaks the displaying of three colors within the other browsers.But I want all three colors to be displayed, so that you can see by backgroundcolor if it's a completely "unread" discussion, a discussion you already read but that has new comments, or if it's a discussion you already read and that has no new comments.
Anyway thanks for your help.
Try this:
#Discussions li.Unread ul
For unread discussions.
#Discussions li.Read ul
For read discussions.
#Discussions li.Read.NewComments ul
For read discussions with new comments.
Cheers
Inkscape
I specified a background image for the blockquote tags. It's just a small image with a writing "Zitat" (which means "quote").
This is the CSS Code:
blockquote { border:1px dotted #0084AD; border-left:10px solid #0084AD; padding-left:2%; background:url(zitat.gif) no-repeat #E7F0F9; padding-top: 20px; }
The box has a 10px wide border on the left side. The funny thing is that Firefox/Opera are positioning it right to the border which is the correct way. But as always the IE 6.0 is making trouble. He is positioning it in the top left corner. This means the image is placed under the border. See the image:
How do I fix this error?
Cheers
Inkscape
Do you or anyone else know another way of fixing it?
blockquote { padding-left:0.5em; }
Does anyone know where I could find the IE7 beta?
MS is recommending conditional comments. Basically import an IE specific stylesheet with all the proper values for sticking points in that browser:
<!--[if IE 7]> <link rel="stylesheet" href="ie7.css" /> <![endif]-->
n.b.: [if IE] would be all versions of IE.
Also poke around here: star and underscore hacks [snook.ca]
I think I'll stick to a conditional comment specifically to IE7.0 when it goes final. By now it's only 1% of the users. Nevertheless let me say thank you for this useful links too. Helped a lot.
btw. just in case you're interested. The admin meanwhile uploaded the style to the server and made it the default style. So if you're interested in seeing the work already done take a look at www.inkscape-forum.de