1 (edited by GeoffG 2007-04-26 03:55)

Topic: Colored Usergroup

It seems when I change the admins usergroup color the "Powered by PunBB
© Copyright 2002?2005 Rickard Andersson" changes to that color as well.

gracias in advance.

-Geoff

Re: Colored Usergroup

Moved to Modifications
It sounds like you applied the mod incorrectly and that a closing tag is now missing

3 (edited by GeoffG 2007-04-26 11:07)

Re: Colored Usergroup

could it be in any file I edited?

or just one?
---------------------------------------------
and how do I remove the underline from all the users online so it just appears as their names?

Re: Colored Usergroup

GeoffG wrote:

could it be in any file I edited?

or just one?

Any, because the footer.php (where the copyright notice is) is called by every forums file.

GeoffG wrote:

and how do I remove the underline from all the users online so it just appears as their names?

Put the text-decoration: none; in the CSS entry that defines links.

Re: Colored Usergroup

Strofanto wrote:
GeoffG wrote:

could it be in any file I edited?

or just one?

Any, because the footer.php (where the copyright notice is) is called by every forums file.

GeoffG wrote:

and how do I remove the underline from all the users online so it just appears as their names?

Put the text-decoration: none; in the CSS entry that defines links.

thanks very much!

but where would the entry be located that defines the links?

Re: Colored Usergroup

Around line 60 of yourstile.css

.pun A:link, .pun A:visited {text-decoration: none}

7 (edited by GeoffG 2007-04-26 19:12)

Re: Colored Usergroup

nice thanks very much. Your a great help.

now If only I could find that broken tag >_< I've literally re-followed the mod three times and cant find anything broken sad

but thanks for the removing of the underline.


EDITED::::

? Where would I go to remove the underline/add color to my mini-portal ....

and how to remove the underline from newly registered users??

sad sorry for so many questions

Re: Colored Usergroup

Can you link your forum?

9 (edited by GeoffG 2007-04-26 19:15)

Re: Colored Usergroup

http://www.kantgosouth.com

Re: Colored Usergroup

Ok try this:
in ./style/imports/VbStyle-Black_cs.css
add at line 237
text-decoration: none;

236  .pun A:link , .pun A:visited {
237  color : #496690; 
238  }

if doesn't work, add the same at line 251

250 .pun H2 A:hover , #brdmenu A:hover {
251 color : #333;
252 }

11

Re: Colored Usergroup

nothing sad

Re: Colored Usergroup

Let's try with this.

Add wherever you like

dl#onlinelist dd a:link, dl#onlinelist dd a:visited {text-decoration: none;}

13

Re: Colored Usergroup

*thumbs up* got rid of the underlines on the portal wooooot smile

now i just need the underlines off the new registered user and the portal to have the user online list in color.

gracias though!!

Re: Colored Usergroup

dl#onlinelist dd a:link, dl#onlinelist dd a:visited, dl#onlinelist dd a:link, dl#conl dd a:visited {text-decoration: none;}

15

Re: Colored Usergroup

didn't do anything =X

Re: Colored Usergroup

Oops

dl#onlinelist dd a:link, dl#onlinelist dd a:visited, 
dl#conl dd a:link, dl#conl dd a:visited {text-decoration: none;}

17

Re: Colored Usergroup

nothing again sad

Re: Colored Usergroup

Odd, try this

div#brdstats dl#conl dd a:link, div#brdstats dl#conl dd a:visited {text-decoration: none;}

19 (edited by GeoffG 2007-04-26 23:00)

Re: Colored Usergroup

nope sad


but ever since I added that code in ... now some of my topics in my forums dont have underlines and some do O_O


how to remove underlines from there as well? eep.. ?_?

20

Re: Colored Usergroup

Strofanto wrote:

Ok try this:
in ./style/imports/VbStyle-Black_cs.css
add at line 237
text-decoration: none;

236  .pun A:link , .pun A:visited {
237  color : #496690; 
238  }

if doesn't work, add the same at line 251

250 .pun H2 A:hover , #brdmenu A:hover {
251 color : #333;
252 }

I guess I should mention to first one on line 237 works ... BUT takes away my heading borders as well for some reason >_> like I have black block sorta on the top of almost everything... that gets taken away.

21

Re: Colored Usergroup

sad

Re: Colored Usergroup

Sorry GeoffG, I had to sleep smile

Anyway, seems that all the links in your forums have underlines and that you want them removed for most of them, in that case add a text-decoration: none, to all the links you find, that should remove all. Then decide what links you want to keep with the underline and we'll see about the code.