inherit
44861
0
Oct 20, 2007 22:55:32 GMT -8
coldethyl
22
May 2005
coldethyl
|
Post by coldethyl on Jul 31, 2005 11:53:20 GMT -8
Its that simple. I'm trying to get my news fader background and my text box's to change with the skin a person selects a new skin with an external css but I don't know anything about getting this crap to work.
I can't get help on California's board because it litterly takes 3 min per page to load and I got sick of waiting. It's ridicules. I went to w3schools and tried to learn what in god's name they are talking about but I don't see what I am trying to do in there anywhere. All I need to know is what codes I put where thats it. I already have a background image and all that other crap they talk about on that website. I don't know how to write up this text file, what goes first, are the codes different, ect..I don't know and I don't see anywhere I can find this out besides coming here. I have spent 2 days trying to sort all this out and I don't have anymore time to spend on it. All I need is a simple way of doing this.
|
|
inherit
52857
0
Oct 1, 2006 13:19:00 GMT -8
bunnyears
14
July 2005
bunnyears24
|
Post by bunnyears on Jul 31, 2005 12:11:52 GMT -8
<style type="text/css"> <!--
A:link { text-decoration: none; font-weight: normal; color:#FF33CC; } A:visited { text-decoration: none; font-weight: normal; color:#CC33FF; } A:active { text-decoration: none; font-weight: normal; color:#33CCFF; } A:hover { text-decoration: line-through; font-weight: bold; color:#3366FF;
cursor:url("http://www.uselesswebstuff.com/rainbow/rainbowcursor.ani"); }
body { background: #CC33FF; background-image:url("http://www.uselesswebstuff.com/bluepinkandpurple/background.gif"); background-attachment: fixed; font-family: verdana; color: #33CCFF; font-size: 10; font-weight: normal; letter-spacing: 0pt; line-height: 12px; text-align: justify; cursor:url("http://www.uselesswebstuff.com/rainbow/rainbowcursor.ani");
direction:ltr;
scrollbar-3dlight-color: #33CCFF; scrollbar-arrow-color: #3366FF; scrollbar-base-color: #FF33CC; scrollbar-darkshadow-color: #FF33CC; scrollbar-face-color: #CC33FF; scrollbar-highlight-color: #FF33CC; scrollbar-shadow-color: #33CCFF; scrollbar-track-color: #FFFFFF; } td, xmp { font-family: verdana; color: #33CCFF; font-size: 10; font-weight: normal; letter-spacing: 0pt; line-height: 12px; text-align: justify; padding-left: 0cm; padding-right: 0cm; padding-top: 0cm; padding-bottom: 0cm; padding: 0cm; padding: 0cm 0cm; } input, textarea { background: #transparent; background-image:url(http://www.uselesswebstuff.com/bluepinkandpurple/background.gif); font-family: verdana; color: #33CCFF; font-size: 10; font-weight: normal; letter-spacing: 0pt; line-height: 12px; text-align: justify; border-left: 2px #33CCFF solid; border-right: 2px #FF33CC solid; border-top: 2px #33CCFF solid; border-bottom: 2px #3366FF solid; } --> </style> You'll need to change the colors and urls and what not. Hope that helps good luck to you
|
|
inherit
17569
0
Aug 14, 2023 13:11:03 GMT -8
frufru
11,774
December 2003
frufru
|
Post by frufru on Jul 31, 2005 12:22:09 GMT -8
you are viewing california's really complex skin. Go to your profile and change it to a different one.
|
|
inherit
44861
0
Oct 20, 2007 22:55:32 GMT -8
coldethyl
22
May 2005
coldethyl
|
Post by coldethyl on Jul 31, 2005 18:24:19 GMT -8
I dont see what I am looking for in that code Bunny. the .css file starts out with <style type="text/css"> right? But the codes to change the news fader background and the text boxes I do not know. Thats helpful if I want to change the scrollbar ect and I will keep that code under file. Thanks for helping though Thank you Fru I did not know that.
|
|
inherit
Proboards Legend
212
0
May 11, 2006 12:32:55 GMT -8
california
21,035
December 1999
california
|
Post by california on Aug 2, 2005 0:17:16 GMT -8
.css files should not include <style> tags. You only use those if you are inserting the code directly into your headers.
|
|
inherit
The Jedi Master of Proboards PBS Oscars: Most Unique
6777
0
Nov 19, 2012 0:15:08 GMT -8
Tommy Huynh
Coffee isn't my cup of tea.
19,374
January 2003
swg2
|
Post by Tommy Huynh on Aug 2, 2005 0:44:25 GMT -8
When linking to a .css file, this is how you should do it. In an HTML document, it belongs somewhere between the <head> and </head> tags. In Proboards, it goes in global headers.
<link rel="stylesheet" type="text/css" href="url to .css file" />
|
|