Tomcat13 Posted April 2, 2006 Share Posted April 2, 2006 I've tried the following script to add some color to my scrollbar:<style type="text/css"> <!-- BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } --> </style> It works with HTML but not in PHP. Not for me.Any suggestions?Thank you in advance Link to comment https://forums.phpfreaks.com/topic/6379-php-and-scrollbar-color/ Share on other sites More sharing options...
shortj75 Posted April 2, 2006 Share Posted April 2, 2006 try to use echo[code]echo "style type="text/css"> <!-- BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } --> </style> [/code]if that doesnt work remove the hide tags <!-- -->[code]style type="text/css"> BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } </style>[/code] Link to comment https://forums.phpfreaks.com/topic/6379-php-and-scrollbar-color/#findComment-23071 Share on other sites More sharing options...
Tomcat13 Posted April 2, 2006 Author Share Posted April 2, 2006 [!--quoteo(post=360803:date=Apr 1 2006, 10:46 PM:name=shortj75)--][div class=\'quotetop\']QUOTE(shortj75 @ Apr 1 2006, 10:46 PM) [snapback]360803[/snapback][/div][div class=\'quotemain\'][!--quotec--]try to use echo[code]echo "style type="text/css"> <!-- BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } --> </style> [/code]if that doesnt work remove the hide tags <!-- -->[code]style type="text/css"> BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } </style>[/code][/quote]They don't work partner..Any more ideas? Anybody...Thanks Link to comment https://forums.phpfreaks.com/topic/6379-php-and-scrollbar-color/#findComment-23282 Share on other sites More sharing options...
ToonMariner Posted April 3, 2006 Share Posted April 3, 2006 try...echo '<style type="text/css"> <!-- BODY { scrollbar-arrow-color: #FFFFFF; scrollbar-base-color: #008055; scrollbar-face-color: #008080; scrollbar-highlight-color: #83D8B0; scrollbar-shadow-color: #FFFFFF; scrollbar-3d-light-color: #FFFFFF; scrollbar-dark-shadow-color: #FFFFFF; } --> </style>'; Link to comment https://forums.phpfreaks.com/topic/6379-php-and-scrollbar-color/#findComment-23317 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.