Forum - border on signature Forum - border on signature
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Forum - border on signature

Started by Dankriss, September 28, 2011, 08:00:57 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Dankriss


Ok I have a border around my signature box...I have had a good look and after a lot of searching have discovered that using fieldset causes a box to form automatically so looked the forum/template/style.css  and yep is said no border with just a border at the top to spilt the sig from the message... So thought I would go and take out the fieldset command but I can't find it and as I don't know PHP at all I have to ask you guys again for a bit of help.

Have attached a screen shot so you know what I mean...

So sorry for being such a pain....

Kriss :)
Good with HTML and CSS but no good with script... so please bear with me.. :)

Jeff Bailey

Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford

Dankriss

Good with HTML and CSS but no good with script... so please bear with me.. :)

Jeff Bailey

Thank you.

Try adding

fieldset {border: 0;}

to your custom style.css
Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford

Dankriss


Yippee!!!  do you know how long I tried to do that on the forum CSS....

One very quick question how do I get rid of the word 'signature' above the signature?

Kriss :)
Good with HTML and CSS but no good with script... so please bear with me.. :)

Jeff Bailey

#5
please mark your topic as solved. http://forum.coppermine-gallery.net/index.php/topic,55415.msg270631.html#msg270631

a very dirty way to do it would be to add

legend {display: none;}

to your style.css

[edit]

.signatureTitle {display: none;}

would work too.

Please open a new thread if you would like a cleaner solution. I don't have the time to search for it right now.
Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford

Jeff Bailey

Forgot to mention but if the forum plugin has its own stylesheet it would be safer to add these changes there instead of the themes style.css just it case in conflicts with something down the road.
Thinking is the hardest work there is, which is probably the reason why so few engage in it. - Henry Ford

Dankriss

#7
Oh thank you so much....was going to have a look at legend as never used those CSS commands before will have a go or will open up a new post....

And as to the forum css I think it is the right one as the only one I could find in the plug in but it says basically what it says now in my theme css but wasn't working so it should not interfere...copied and pasted it here so you can see....

/**************************************************
  Coppermine 1.5.x Plugin - forum
  *************************************************
  Copyright (c) 2010 foulu (Le Hoai Phuong), eenemeenemuu
  *************************************************
  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 3 of the License, or
  (at your option) any later version.
  ********************************************
  $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/branches/cpg1.5.x/plugins/forum/forum/templates/classic/style.css $
  $Revision: 7119 $
  $LastChangedBy: gaugau $
  $Date: 2010-01-24 21:39:28 +0100 (So, 24 Jan 2010) $
  **************************************************/
 
.tableh1 a {
    color: #C6B78E;
}
fieldset.signature {
    margin-top: 10px;
    border: 0px;
}
.signatureTitle {
    font-style: italic;
    color: #C6B78E;
}


Kriss :)
Good with HTML and CSS but no good with script... so please bear with me.. :)