Topic: Style modification troubles (Copper)

Hallo,

I started modifying the Copper style and there is a problem:

http://i56.tinypic.com/8y7xis.jpg

as you can see there is text above my header.

I want to remove "Board title" and "Board description" and want to move down "Logged in as..." and "New posts Active topics Unanswered topics".

I already searched and modified copper.css and copper_cs.css for hours but nothing really works  sad

2 (edited by Nonante 2010-12-08 18:13)

Re: Style modification troubles (Copper)

I just watched the copper style on the wiki: http://punbb.informer.com/trac/browser/ … Copper.css
Have you changed/looked these lines in your copper.css ?

615    #brd-title {
616        padding-bottom: 0;
617        }
618   
619    #brd-title a, #brd-title strong {
620        font-size: 1.5em;
621        text-decoration: none;
622        font-weight: normal;
623        }
624   
625    #brd-desc {
626        font-size: 1.084em;
627        padding-top: 0;
628        padding-bottom: 0;
629        }

and

696    #brd-visit #welcome {
697        float: left;
698        }
699   
700    #brd-visit #visit-links {
701        text-align: right;
702        float: right;
703        }

I don't speak English, but Google Translate is doing pretty good.

Re: Style modification troubles (Copper)

Nonante wrote:

I just watched the copper style on the wiki: http://punbb.informer.com/trac/browser/ … Copper.css
Have you changed/looked these lines in your copper.css ?

615    #brd-title {
616        padding-bottom: 0;
617        }
618   
619    #brd-title a, #brd-title strong {
620        font-size: 1.5em;
621        text-decoration: none;
622        font-weight: normal;
623        }
624   
625    #brd-desc {
626        font-size: 1.084em;
627        padding-top: 0;
628        padding-bottom: 0;
629        }

I commented out these lines but the text was still there.

4 (edited by Nonante 2010-12-08 18:48)

Re: Style modification troubles (Copper)

If you do not want to see this: TITLE + DESC + "Welcome Username" "Last activity on your account : Today 16:51:27" and link new message, ununswered and no response, try to put this on bottom of your .css

#brd-visit, #brd-head{
    display:none;
    }

and only the menu will appear else if you want to hide the text but keep the "background", try this:

#brd-visit, #brd-head{
    text-indent: -9999em;
    }
p#visit-links{ display:none;} // remove this if you want see links
I don't speak English, but Google Translate is doing pretty good.