here's one example of a CSS skin I made:
CODE
<!-- begin code provided by createblog.com -->
body {
background-color: #ffffff;
background-image: URL(none);
background-attachment: fixed;
background-repeat: repeat-y;
background-position: middle left;
scrollbar-Arrow-Color: beige;
scrollbar-Track-Color: #FFFFFF;
scrollbar-Shadow-Color: #FFFFFF;
scrollbar-Face-Color: #beige;
scrollbar-Highlight-Color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-3dLight-Color: #FFFFFF;
}
table.navigation, table.footer {
/* hides xanga's top navi and the footer*/
/* remove this tag if you want them to be seen */
display: none;}
.left, .blogbody, table.footer, .standard, .leftmodulefontcolor, td, p, .content {
/* edits main text */
font:normal 12px palatino;
line-height: 12px;
color: #424242;;
text-align:justify;
}
b {
/* edits bold text */
font:normal 12px palatino;
line-height: 12px;
color: #000000;;
text-align:justify;
font-weight: bold;
}
table.blogbody tr td {
/* entry margins */
width:0px;
padding-left: 0px;
padding-bottom: 3px;
padding-top: 5px;
}
table.footer TD {
/* edits the footer */
text-align: center;
}
div.blogheader, .caption {
/* edit the dates */
background-image: URL(http://img19.photobucket.com/albums/v58/DoodleFlip/bellandy/datehead.jpg);
background-attachment: fixed;
background-position: top right;
background-repeat: no-repeat;
font-family:arial;
text-transform:uppercase;
font-size:14px;
line-height:14px;
border: 2px solid #336699;
border-width: 1px 1px 1px 1px;
color:#336699;
background-color: #none;
text-align: left;
padding-top: 10px;
width:405px;
}
a:link, .footernav.link, a.footernav:link, a.footernav:active {
/* edit the links */
font:normal 11px palatino;
line-height:11px;
color: #555555;
text-decoration: strong;
background-color: #none;
}
a:visited, a.footernav:visited, {
/* edit visited links */
font:normal 11px palatino;
line-height:11px;
color: #555555;
text-decoration: strong;
background-color: #none;
}
a:hover {
font:normal 11px arial;
line-height:11px;
color:#444444;
background-color:#none;
text-decoration: line-through;
cursor: crosshair;
}
input, select, textarea, .textfield, .button {
/* this edits buttons, drop down menus etc. */
border: 1px solid #000000;
font:normal 11px arial #ffffff;
background-color: #ffffff;
letter-spacing:0px;
}
table.blogbody {
/* edits your blog or entry space */
width:405px;
border: 1px solid #ffffff;
border-width: 0px 0px 0px 0px;
}
table.left {
/* this edits the menu modules as a whole */
border: 0px solid #000000;
width:135px;
background-color: none;
}
table.left th {
/* on your menu module, this edits the title part of it */
/* like BLOGRINGS, POSTING CALENDAR, etc */
background-image: URL(http://img19.photobucket.com/albums/v58/DoodleFlip/bellandy/datehead.jpg);
background-attachment: fixed;
background-position: top left;
background-repeat: no-repeat;
background-color: #none;
width:135px;
font: bold 16px palatino;
line-height: 16px;
text-transform: capitalize;
color: #336699;
border: 1px solid #000000;
border-width: 1px 1px 1px 1px;
text-align: center;
}
table.left TD {
/* on your menu module, this edits the body part of it */
background-color: none;
color: #424242;
border: 1px solid #DFD8DF;
font:normal 11px palatino;
line-height: 12px;
border-width: 0px 0px 0px 0px
width:135px;
}
blockquote {
/* format text when using blockquotes */
background-color: #222222;
border: 1px #ffffff solid;
padding: 10px;
margin: 20px;
text-align: justify;
font-size: 8pt;
letter-spacing: 1px;
font-family: verdana;
}
#pnlEnabled table, #htmleditor, #lblTimeZone{
/* make this the same width as the blogbody */
/* unless you know what to do */
width: 400px;
}
.#rblEprops{display: none;}
#pnlEnabled table, #htmleditor, #lblTimeZone, #pnlEprops, #rblEprops
/* width of the comment page I suggest miking it the same width as the blogbody*/
{width: 400px;
}
table.navigation, table.main, table.footer {
/* the width of your blog with modules */
width: 540px;
}
hr {
/* edit the horizontal divider*/
color: #666666;
)
<!-- end code provided by createblog.com -->
this came from the basic CSS format blogring gave with a few additions. there are more tags you can add when you become familiar with CSS.
*note you can only string together CSS styles. scripts and other html formats must be separate.
CSS can get pretty long so I suggest linking it. use Dreamweaver or Frontpage [I prefer to use Notepad since it's simple and fast] and save it as a txt file. Upload it to a site and rename it into
filename.CSS and use this to link it:
CODE
<!-- begin code provided by createblog.com -->
<link rel="stylesheet" type="text/CSS" href="http://www.sitename/filename.CSS">
<!-- end code provided by createblog.com -->
most free sites allow you to save CSS. I use geocities to upload my CSS. Hope this helps