AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   someone help me please :*( (https://forums.alliedmods.net/showthread.php?t=20368)

cs_killer 11-07-2005 10:17

someone help me please :*(
 
please help me ... currently this is in my motd
Code:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Cstrike MOTD</title>
<style type="text/css">
pre        {
                font-family:Verdana,Tahoma;
                color:#FFB000;
            }
body        {
                background:#000000;
                margin-left:3px;
                margin-top:0px;
                }
a        {
            text-decoration:    underline;
        }
a:link  {
    color:  #FFFFFF;
    }
a:visited  {
    color:  #FFFFFF;
    }
a:active    {
    color:  #FFFFFF;
    }
a:hover {
    color:  #FFFFFF;
    text-decoration:    underline;
    }
</style>
</head>
<pre>
Welcome to [F]ron[Z]ion normal server
Rules inside server
1.No spamming
2.No swearing
3.No bugging
4.ENJOY!
please also visit
www.counter-strike.net
Visit Counter-Strike.net
</pre>
</body>
</html>

it works fine but .. the fonts are too big and the spacing is too much . do anyone know how to make fonts smaller or the spacing less?

haimmaik 11-07-2005 10:48

lol? its HTML not Pawn... hmm im not sure this is where u post that question.

i think its the .css file.. open it with text editor and change the size of the font.
also try to warp the text with -

Code:

<font size="3">what_u_want_to_be_written</font>
change the number of the fontsize to whatever u like from 1 to 7

Kensai 11-07-2005 11:12

Yet AGAIN, cs_killer, Please stop making like 5 Topics per question, in EVERY Forum.

cs_killer 11-07-2005 11:20

sorry i dont want to but my com just busted and it kept pressing enter... lucky i stop my com in time or the whole forum will be flooded

[C]oN -X- 11-07-2005 11:22

uuhhhh
 
learn html man...

<font size="#">

[C]oN -X- 11-07-2005 11:24

Re: uuhhhh
 
Quote:

Originally Posted by [C
oN -X-]learn html man...

<font size="#">


by the way ur shit is wrong


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Cstrike MOTD</title>
<style type="text/css">
pre {
font-family:Verdana,Tahoma;
color:#FFB000;
}
body {
background:#000000;
margin-left:3px;
margin-top:0px;
}
a {
text-decoration: underline;
}
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:active {
color: #FFFFFF;
}
a:hover {
color: #FFFFFF;
text-decoration: underline;
}
</style>
</head>
<pre>
Welcome to [F]ron[Z]ion normal server
Rules inside server
1.No spamming
2.No swearing
3.No bugging
4.ENJOY!
please also visit
www.counter-strike.net
Visit Counter-Strike.net
</pre>
</body>
</html>

u see how u listed Welcome to

[F]ron[Z]ion normal server
Rules inside server
1.No spamming
2.No swearing
3.No bugging
4.ENJOY!

well u need make it look like this.. in order for it to list

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Cstrike MOTD</title>
<style type="text/css">
pre {
font-family:Verdana,Tahoma;
color:#FFB000;
}
body {
background:#000000;
margin-left:3px;
margin-top:0px;
}
a {
text-decoration: underline;
}
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:active {
color: #FFFFFF;
}
a:hover {
color: #FFFFFF;
text-decoration: underline;
}
</style>
</head>
<pre>

Welcome to [F]ron[Z]ion normal server

Rules inside server

1.No spamming

2.No swearing

3.No bugging

4.ENJOY!

please also visit

www.counter-strike.net
Visit Counter-Strike.net
</pre>
</body>
</html>

if u wonna change font size then put <font size="#"> doesnt matter where...... like put it

<font size="#">
Welcome to [F]ron[Z]ion normal server

Rules inside server

1.No spamming

2.No swearing

3.No bugging

4.ENJOY!

please also visit

www.counter-strike.net

but replace the # with the number size u want

haimmaik 11-07-2005 11:45

ye.. now when i look at it.. this code is really fucked up... maybe use some helping programs like microsoft front page or something...

or just copy paste from the post above.. but u wont learn anything from it ^^

[C]oN -X- 11-07-2005 12:04

bah
 
bah :-/ u guys are slow here lol heres ur motd.txt man!!@!@!@ HERERE!!! ill do it for u

[C]oN -X- 11-07-2005 12:05

HERE!!!!
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Cstrike MOTD</title>
<style type="text/css">
pre {
font-family:Verdana,Tahoma;
color:#FFB000;
}
body {
background:#000000;
margin-left:3px;
margin-top:0px;
}
a {
text-decoration: underline;
}
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:active {
color: #FFFFFF;
}
a:hover {
color: #FFFFFF;
text-decoration: underline;
}
</style>
</head>
<pre>
<font size="14">
Welcome to [F]ron[Z]ion normal server

Rules inside server

1.No spamming

2.No swearing

3.No bugging

4.ENJOY!

please also visit
www.counter-strike.net
Visit Counter-Strike.net
</pre>
</body>
</html>

haimmaik 11-07-2005 12:52

hmm u shoudnt doublepost


All times are GMT -4. The time now is 23:37.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.