1 sjcallas Sep 20, 2004 03:15
3 sjcallas Sep 20, 2004 15:24
I'm using the latest version of IE6 with SP2. Here's a ss of the problem:
4 shadowfoot Sep 20, 2004 22:43
What is the body style instruction for the page loaded into the iframe?
Google lead me to [url=http://www.fontstuff.com/frontpage/fptut14.htm]this page[/url] talking about colouring of the scroll bars. It may tell you what you need to know.
5 sjcallas Sep 20, 2004 23:09
look at my first post. it shows the CSS of the b2 page that loads in the iframe
6 edb Sep 20, 2004 23:34
The page shadowfoot linked seems to contain a major clue.
Remember to write the code as a single line. I have had to break the line here to fit it in the space available. It's usually OK to split a line of HTML code as long as you don't split it it between the < > brackets of a tag.
Maybe you need to put all the dealies on a single line in your css file? Another possibility is to stick it right in the head section, but there is nothing in b2evo stopping it from working (AFAIK...). It doesn't validate so I don't really know anything about that gimmick, but it really does enhance the already soothingly comfortable/clean look of your site.
7 shadowfoot Sep 20, 2004 23:59
sjcallas wrote:
look at my first post. it shows the CSS of the b2 page that loads in the iframe
I see the css but I can't tell whether it is for the page holding the iframe, or the page loaded into the iframe
8 pyn Sep 25, 2004 02:45
iframe is not affected by body style text just to tell you.
change the file your iframe is pointing to's style
or
add a style="scrollbar code:red;"> to it
9 jeof0411 Jan 19, 2005 06:44
I am not sure if this will fix your problem, but I had alot of issues with conflicting css styles when using skins. I did a little research ... and I had actually never heard of this css element, but it worked for giving my css ids and classes priority when for some reason they wouldn't show up. Everyone probably already knows this but for dummies like me I will explain:
Sometimes when you use PHP etc and end up including several different stylesheets in one page you have conflicts. This means that one element is affected by two css styles. This happens quite a bit with the skins i use....so Im loading
/rsc/basic.css
/rsc/forms.css
/skins/myskin/skinstyle.css
when I load index.php.
Anyways the solution or temporary fix or hack or whatever you wanna call it is to add the "important" attribute to your css style properties. This gives that particular property priority over any conflicting declarations. Just open the stylesheet that contains the style that is being ignored and add ! important to every style you want to take priority.
So if your stylesheet read like this:
<style type="text/css">
.mystyle {
color: red;
font-weight: bold;
text-decoration:underline;
}
</style>
and your find that for some reason the text is not showing up bold or underlined you would change the stylesheet to read :
<style type="text/css">
.mystyle {
color: red;
font-weight: bold ! important;
text-decoration:underline ! important;
}
</style>
You should only add it to parts of the class or id that are being ignored tho.. because you run the risk of this affecting the style in other areas where you DONT want it bold or underlined etc.
Hope this helps... though Im not sure it will since you are talking scrollbar colouring.
Jeoffory
10 kiesow Jan 19, 2005 16:46
just for information: the default settings of some browsers (like opera und firefox) don't allow websites to change the scrollbars.
11 marston Feb 18, 2005 16:42
I'd just leave it out. Like EdB said, its not really a valid... css block or whatever you wanna call it. Javascript scrollbars are a hell of alot better to use... :roll:
12 oriana Mar 14, 2005 01:24
First off, colored scrollies don't work on any browser but IE.
Second, play with the bit that says:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
I'm not sure which thing allows for colored scrollies, but if you get lazy to look around, just delete it and the css should work.
13 vickster Apr 29, 2005 11:01
Oriana wrote:
First off, colored scrollies don't work on any browser but IE.
Second, play with the bit that says:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
I'm not sure which thing allows for colored scrollies, but if you get lazy to look around, just delete it and the css should work.
Oriana is right, just remove the line she says, and everything will work out fine. ;)
14 stk May 11, 2005 00:31
*GASP* Remove the Document Type Declaration statment so that you can have colored scroll bars? Good GOD man, what is the World coming to? 8|
If there was a site to do if for, yours would be one! That grey scroll bar is begging for a face lift.
The scrollbars in IE are blue. (As coded? I don't read colour codes easily.)
What browser are you using? It's IE specific css so firefox doesn't show anything unusual.