English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

1 answers

I'm not sure if you have access to review.css (the css file responsible for styling that part of the page), but if you do, then look for these classes:

.revHeader
.revFooter
.revContent

...and remove all borders and background colors from them.

So for example, this:

.revFooter {
width: auto;
margin: 0px 220px 15px 0px;
padding: 3px 5px;
text-align: center;
background: #f1f1f1;
border-left: 1px solid #aeaeae;
border-right: 1px solid #aeaeae;
border-bottom: 1px solid #aeaeae;
}

would become this:

.revFooter {
width: auto;
margin: 0px 220px 15px 0px;
padding: 3px 5px;
text-align: center;
background: #fff;
border: none;
}

If you don't have access to that css file, try declaring any one of the classes in whatever file friendster does allow, and see if you can override the defaults.

2006-08-28 15:33:24 · answer #1 · answered by achtungbaby 3 · 0 0

fedest.com, questions and answers