Master Blake
07-30-2006, 10:26 PM
to get a vertical friends list, u replace $friends with $friends_vert . When you switch to verticle, it removes the text "So and so has X numebr of friends", so you have to add your own. The variable $friends_num holds the # of friends you have.
to remove ads from your page use:
.tfads
{
display: none;
}
to remove the header from your page use:
.tfheader
{
display: none;
}
to remove the image right below the links at the top, use:
.tflinksfooter
{
display: none;
}
to remove the breadcrumb (shows who u are logged in as, with the # of pms and comments etc) use:
.tfbreadcrumb
{
display: none;
}
to remove ALL of the above, use:
.tfheader, .tfbreadcrumb, .tfads, .tflinksfooter
{
display: none;
}
to hide that 'collapseable module' image that is at the top right of every module on your page, use:
.tcat a
{
display: none;
}
to set the background color of the links at the very top of your page in the navbar, use:
.vbmenu_control
{
background-color: black;
}
to seperate each comment with a line, use:
.thead
{
border-top-width: 2px;
border-top-style: solid;
border-top-color: black;
color: black;
}
You may want to tweak the border style and width. This looks nice if you set the table head color and the tbale color the same, and set the border width to 0 like I have done on my page.
remember, that code must go between <style> and </style> tags. it *should* go in the CSS or template field.
Keep in mind that if you use the profile transparencies in the CSS editor, that your page may not display 100% correctly all the time with internet explorer. Works fine with all other major browsers
to remove ads from your page use:
.tfads
{
display: none;
}
to remove the header from your page use:
.tfheader
{
display: none;
}
to remove the image right below the links at the top, use:
.tflinksfooter
{
display: none;
}
to remove the breadcrumb (shows who u are logged in as, with the # of pms and comments etc) use:
.tfbreadcrumb
{
display: none;
}
to remove ALL of the above, use:
.tfheader, .tfbreadcrumb, .tfads, .tflinksfooter
{
display: none;
}
to hide that 'collapseable module' image that is at the top right of every module on your page, use:
.tcat a
{
display: none;
}
to set the background color of the links at the very top of your page in the navbar, use:
.vbmenu_control
{
background-color: black;
}
to seperate each comment with a line, use:
.thead
{
border-top-width: 2px;
border-top-style: solid;
border-top-color: black;
color: black;
}
You may want to tweak the border style and width. This looks nice if you set the table head color and the tbale color the same, and set the border width to 0 like I have done on my page.
remember, that code must go between <style> and </style> tags. it *should* go in the CSS or template field.
Keep in mind that if you use the profile transparencies in the CSS editor, that your page may not display 100% correctly all the time with internet explorer. Works fine with all other major browsers