Go Back   RunUO - Ultima Online Emulation > Developer's Corner > Programming > Script Languages

Script Languages Perl/PHP/Python/Ruby so on and so forth.

Reply
 
Thread Tools Display Modes
Old 04-19-2007, 06:55 AM   #1 (permalink)
Forum Expert
 
Alis's Avatar
 
Join Date: Jun 2005
Location: Probably where people call it heaven
Posts: 1,452
Send a message via AIM to Alis Send a message via MSN to Alis
Default Who knows xhtml/css coding

Im kind of needing a big help does anyone know xhtml/css coding... Im interested in creating a blog theme. But "im fishy on some parts"
__________________
Help me on my project of webuo

The Hotest User 2006 : This user
Alis is offline   Reply With Quote
Old 06-23-2007, 01:35 AM   #2 (permalink)
Forum Novice
 
Join Date: Oct 2005
Posts: 142
Default

I'm more fluent in CSS than XHTML, but they're both pretty easy.

I will be more than happy to help you in the learning process. However, I would like for you to try to learn the basics. Even if it's just CSS, it's a good feeling to say, "I did that!"

Before someone handing you code, I would suggest learning both languages if you have the time. If you have previous coding experience, you can understand CSS easily enough, it's very easy and most widely used in communities like MySpace. I don't really know what you're trying to do with XHTML, so I'll leave that off for now since CSS is probably easier and more common.

With a google search, you can find many profile/blog/etc. CSS generators. You can also find a wealth of documentation and tutorials on both languages.
Shadow-Sigma is offline   Reply With Quote
Old 08-01-2007, 04:09 PM   #3 (permalink)
Newbie
 
Join Date: Oct 2004
Location: Charleston, SC
Age: 27
Posts: 37
Send a message via ICQ to LightShade Send a message via AIM to LightShade
Default

Code:
/* CSS Document */
p, td
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 12px; 
	color: white;
}
h1
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 26px; 
	font-weight: bold;
	color: #FFFFFF;
}
h2
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 24px; 
	font-weight: bold; 
	color: #FFFFFF;
}
h3 
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 18px; 
	font-weight: bold; 
	color: #FFFFFF;
}
h4
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 16px; 
	font-weight: bold; 
	color: #FFFFFF;
}
h5
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 14px; 
	font-weight: bold; 
	color: #FFFFFF;
}
h6
{
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 12px; 
	color: #FFFFFF;
}	
.textfield 
{
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-weight: normal;
    font-size:12px;
	background: #000000;
	color: #FFFFFF;
    border : 1px solid #66CCFF;
}

.transparent 
{		
	filter:alpha(opacity=75);
	background-color:green;		
	display:none;		
	width:170;
	height:100;
	position:absolute;		
	color: white;		
	border: 1 green solid;	
}

.transparentlayer 
{		
	filter:alpha(opacity=75);	
}


.textarea 
{
	background-image:url("");
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-weight: normal;
    font-size:12px;
	color: #FFFFFF;
    border : 1px solid #66CCFF;
}
#mybutton 
{
	border-style: inset;
	border-color: #ff6633;
   	background-color: #CC3300;
   	text-decoration: none;   
    width: 80px;
    text-align: center;
}

.buttonover 
{
	color: yellow;
    text-decoration: none;
    font: bold 12pt Verdana;
    cursor: hand;
}

.bttn 
{
	background-image:url("");
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-weight: bold;
	font-size:36px;
	border-bottom: 2px solid #66CCFF;
	border-right: 2px solid #66CCFF;
	border-left: 2px solid #66CCFF;
	border-top: 2px solid #66CCFF;
	color:#FFFFFF;
	text-decoration:none;
	cursor: hand;
}

a:link 
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px; 
	font-style: normal; 
	line-height: normal; 
	font-weight: bold; 
	font-variant: normal; 
	text-transform: none; 
	color: #FFFFFF; 
	text-decoration: none
}

a:visited 
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px; 
	font-style: normal; 
	line-height: normal; 
	font-weight: bold; 
	font-variant: normal; 
	text-transform: none; 
	color: #C0C0C0; 
	text-decoration: none
}

a:hover 
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px; 
	font-style: normal; 
	line-height: normal; 
	font-weight: bold; 
	font-variant: normal; 
	text-transform: none; 
	color: #66CCFF; 
	text-decoration: none
}

a:active 
{
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 12px; 
	font-style: normal; 
	line-height: normal; 
	font-weight: bold; 
	font-variant: normal; 
	text-transform: none; 
	color: #FF0000; 
	text-decoration: none
}

body 
{
	scrollbar-face-color: #000000; 
	scrollbar-shadow-color: #C0C0C0; 
	scrollbar-highlight-color: #000000; 
	scrollbar-3dlight-color: white; 
	scrollbar-track-color: #000000;
	scrollbar-arrow-color: #66CCFF;
	scrollbar-darkshadow-color: #000000;
	margin-top: 10;
	margin-bottom: 10; 
	margin-left: 10; 
	margin-right: 10;
	background-image: url("");
	background-attachment: fixed
}
There's a bunch of CSS to play with. Just gotta link it to your HTML.

Just throw something like this in the <HEAD> tags...
HTML Code:
<link href="http://www.yoursite.com/css/style.css" rel="stylesheet" type="text/css" />
	<link REL="SHORTCUT ICON" href="http://www.yoursite.com/index/addressbar_icon.ico">
LightShade is offline   Reply With Quote
Old 08-02-2007, 08:17 PM   #4 (permalink)
Master of the Internet
 
TMSTKSBK's Avatar
 
Join Date: Feb 2004
Location: NC/NC State Univ
Age: 23
Posts: 16,422
Default

Bit late for this...
__________________
Goodbye, folks.
TMSTKSBK is offline   Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0 RC5