brandon
Site Admin
| Joined: 19 Sep 2005 |
| Posts: 139 |
|
|
Posted: Mon Jan 16, 2006 4:03 pm |
|
 |
 |
I've had a few questions now wondering how to create a skinny profile. The code you will find below will do just that. This code will need to replace any existing code you have added to your profile. The items in bold are the items which you can modify to customize the looks of your profile, but you may have to have some HTML/CSS knowledge in order to modify the items in bold. Here's the code to create a skinny profile:
<STYLE type="text/css">
body {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
background-color: 000000;
background-image: url("URL TO IMAGE");
background-repeat: repeat;
background-position: center center;
background-attachment: fixed;
scrollbar-face-color: 000000;
scrollbar-highlight-color: FF0000;
scrollbar-3dlight-color: FF0000;
scrollbar-shadow-color: FF0000;
scrollbar-darkshadow-color: FF0000;
scrollbar-arrow-color: 000000;
scrollbar-track-color: FFFFFF;
}
table, tr, td {
background: transparent;
border-width: 0px;
}
table td td {
width: 0px;
}
table table td {
padding: 3px;
}
table table table {
width: 220px !important;
background-color: CCCCCC;
border-width: 2px;
border-style: solid;
border-color: FF0000;
}
table table table td {
padding: 0px;
}
table table table table {
border-width: 0px;
}
table table table table table {
width: 0px !important;
padding: 0px !important;
}
table table table table table td {
width: 0px !important;
padding: 0px !important;
}
td.text a img {
width: 100px !important;
}
td.text td.text a img {
width: 35px !important;
}
td.text td a img {
width: auto !important;
}
table table td img {
display: none;
}
table table table td img {
display: inline;
}
td td td div strong {
width: 170px !important;
display: block;
}
span, font, table, td, div, b, li, p {
color: FFFFFF;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
}
.orangetext15, .blacktext10 {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
display: block;
width: 110px;
}
td.text td.text table table div {
display: none;
}
body div table tbody tr td font {
visibility: hidden;
}
.navbar {
visibility: visible;
}
.navbar font {
visibility: hidden;
}
table td div div font {
visibility: hidden;
}
.contactTable {
visibility: hidden !important;
display: none !important;
}
object {
display: block;
width: 220px;
}
</STYLE>
This next section of code are add-ons to the above code, which you can further customize the look of your profile. The following code can be added between the <STYLE type="text/css"> and </STYLE> tags.
This code will modify the navigation bar links and all other text links in your profile:
a {
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
a:link, a:active, a:visited {
color: FF0000;
text-decoration: none;
}
a:hover {
color: FFFFFF;
text-decoration: underline;
}
a.navbar {
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
a.navbar:link, a.navbar:active, a.navbar:visited {
color: FF0000;
text-decoration: none;
}
a.navbar:hover {
color: FFFFFF;
text-decoration: underline;
}
a.redlink {
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
a.redlink:link, a.redlink:active, a.redlink:visited {
color: FF0000;
text-decoration: none;
}
a.redlink:hover {
color: FFFFFF;
text-decoration: underline;
}
This add-on section of code will customize your section titles, headers and name text in your profile:
.btext {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
.blacktext12 {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
.lightbluetext8 {
color: 000000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
}
.redtext {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
.redbtext {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
text-transform: uppercase;
}
.text {
color: 000000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
}
.whitetext12 {
color: 000000;
font-family: Arial, Verdana, Helvetica;
font-size: 10px !important;
font-weight: bold;
}
.nametext {
color: FF0000;
font-family: Arial, Verdana, Helvetica;
font-size: 16px !important;
font-weight: bold;
text-transform: uppercase;
}
Once again, items in bold can be changed to your liking.
I hope this helps dispell some confusion on how to make your profile skinny, as well as customize it how you like at the same time. If there's any questions, please reply to this message.
|