SITE REVIEW: RyTRiX.com

  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 13th, 2003, 12:12 pm

Phew! After a few nights with no sleep it is finally back up! Be sure to check it out... http://www.rytrix.com

I'll be adding more things like cartoons now that i have unlimited bandwidth.

Anybody have any more sugguestions?
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post July 13th, 2003, 12:12 pm

  • Geekette
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jun 25, 2003
  • Posts: 482
  • Loc: The Land of NeverWinter (FL)
  • Status: Offline

Post July 13th, 2003, 2:42 pm

Wow, you got it back up fairly quickly, good job! I don't have any more suggestions, it looks and works great! :D
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 13th, 2003, 4:34 pm

:D
  • lachlanmullen
  • Novice
  • Novice
  • No Avatar
  • Joined: Mar 30, 2003
  • Posts: 21
  • Status: Offline

Post July 13th, 2003, 10:51 pm

that is an incredible improvement. wow.
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 14th, 2003, 11:39 am

Thanks :D
  • PluTunium
  • Professor
  • Professor
  • User avatar
  • Joined: Jul 10, 2003
  • Posts: 812
  • Loc: Touring the USA
  • Status: Offline

Post July 14th, 2003, 5:58 pm

looks professional. Love it :D
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 14th, 2003, 8:36 pm

Thanks, I do what i can. :D
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 17th, 2003, 1:01 am

Should I customize the scroll bar?
  • Geekette
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jun 25, 2003
  • Posts: 482
  • Loc: The Land of NeverWinter (FL)
  • Status: Offline

Post July 17th, 2003, 9:11 am

Sure, it's always a nice touch. It doesn't matter to peope who are using Mozilla and Opera (I have never used Netscape, so I don't know about it), though, they won't be able to see the purdy customization.
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 17th, 2003, 10:39 am

Hmmm...it doesn't seem to be working. Oh well :P
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 17th, 2003, 5:23 pm

There. I set the scrollbar colors using:
Code: [ Select ]
<style type="text/css">
<!--
body
{
scrollbar-base-color: #008000;
scrollbar-arrow-color: #FFFFFF;
scrollbar-darkshadow-color: #008000;
scrollbar-face-color: #008000;
scrollbar-highlight-color: #000080;
scrollbar-shadow-color: #008000;
scrollbar-3dlight-color: #008000;
}
-->
</style>
  1. <style type="text/css">
  2. <!--
  3. body
  4. {
  5. scrollbar-base-color: #008000;
  6. scrollbar-arrow-color: #FFFFFF;
  7. scrollbar-darkshadow-color: #008000;
  8. scrollbar-face-color: #008000;
  9. scrollbar-highlight-color: #000080;
  10. scrollbar-shadow-color: #008000;
  11. scrollbar-3dlight-color: #008000;
  12. }
  13. -->
  14. </style>

It doesn't seem to look right. Anybody have any sugguestions?
  • Geekette
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jun 25, 2003
  • Posts: 482
  • Loc: The Land of NeverWinter (FL)
  • Status: Offline

Post July 17th, 2003, 5:44 pm

You just left out "scrollbar-track-color:" and that's why it has that funny teal color on your site.
  • b_heyer
  • Web Master
  • Web Master
  • User avatar
  • Joined: Jun 15, 2003
  • Posts: 4583
  • Loc: Maryland
  • Status: Offline

Post July 17th, 2003, 6:09 pm

I did that too on my site, but looked at your code. Seems the manual I was using left out the rail color.
Pixel Acres V2
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 17th, 2003, 6:52 pm

huh...?
  • RyTRiX
  • Graduate
  • Graduate
  • User avatar
  • Joined: Mar 28, 2003
  • Posts: 239
  • Loc: Michigan
  • Status: Offline

Post July 17th, 2003, 6:59 pm

Oh i see what your saying...Like this?
Code: [ Select ]
<style type="text/css">
<!--
body
{
scrollbar-base-color: #008000;
scrollbar-arrow-color: #FFFFFF;
scrollbar-darkshadow-color: #008000;
scrollbar-face-color: #008000;
scrollbar-highlight-color: #000080;
scrollbar-shadow-color: #008000;
scrollbar-3dlight-color: #008000;
scrollbar-track-color: #000000;
}
-->
</style>
  1. <style type="text/css">
  2. <!--
  3. body
  4. {
  5. scrollbar-base-color: #008000;
  6. scrollbar-arrow-color: #FFFFFF;
  7. scrollbar-darkshadow-color: #008000;
  8. scrollbar-face-color: #008000;
  9. scrollbar-highlight-color: #000080;
  10. scrollbar-shadow-color: #008000;
  11. scrollbar-3dlight-color: #008000;
  12. scrollbar-track-color: #000000;
  13. }
  14. -->
  15. </style>
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post July 17th, 2003, 6:59 pm

Post Information

  • Total Posts in this topic: 67 posts
  • Moderator: Website Reviewers
  • Users browsing this forum: No registered users and 21 guests
  • You cannot post new topics in this forum
  • You cannot reply to topics in this forum
  • You cannot edit your posts in this forum
  • You cannot delete your posts in this forum
  • You cannot post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.