Help - Search - Members - Calendar
Full Version: Few little design errors!
Invision Power Services > Community Forums > Community Web Design and Coding
AJ~
Hello.

I'm not quite sure how, but I've managed when moving my forum from one server to another screw up a few things in the design. They are nothing major and do not affect the running of the board, but as I'm not an expert I was hoping someone here may be able to point me in the right direction as to where I can repair these little niggling faults!


1. Black text instead of white. On the main forum index the text is white, but in the forums and the topics it has for some reason changed to black now in the headers.


2. Black boxes have surrounded the "Quote" button (but not the others as you can see!) and all of the smilies when you click "show all".

Thanks in advance for your help. original.gif

AJ
.Jack
If the skin isn't modified - try reverting all template and CSS customisations back to default.
.Logan
It looks like you used the Easy CSS editor tongue.gif

Don't ever use that, I don't even know why it's even apart of the software. It destroys a skin.
AJ~
It is modified yeah, so reverting is not something I'd like to do ideally.

Bugger. sad.gif
Mert
QUOTE(AJ~ @ Jul 24 2006, 11:50 AM) *

2. Black boxes have surrounded the "Quote" button (but not the others as you can see!) and all of the smilies when you click "show all".


the box errors are because of bordering image in fact. for example:

CODE
<a href="edit.php"><img src="edit.gif" width="85" height="22" align="right" /></a>


if you write like this, you will see this image in a box. but if you write like this:

CODE
<a href="edit.php"><img src="edit.gif" width="85" height="22" align="right" border="0" /></a>


you won't see the boxes because the border is set to 0 original.gif
=Charles
Or just put the following in your CSS:
CODE
img { border: 0; }
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2009 Invision Power Services, Inc.