Page 1 of 1

HELP ME!! :oops:

PostPosted: Wed Aug 06, 2003 2:31 am
by hyunsil
visitors can't see "vote for this gallery" is written left on the bottom of the screen ..??!!

some friends told me they couldn't see them instead of it they could see "no comment"

what hits mean? it's the same of votes of people?

reply me i don't know :roll:

http://www.pbase.com/hyunsil

Re: HELP ME!! :oops:

PostPosted: Wed Aug 06, 2003 3:19 am
by srijith
hyunsil wrote:visitors can't see "vote for this gallery" is written left on the bottom of the screen ..??!!

some friends told me they couldn't see them instead of it they could see "no comment"

what hits mean? it's the same of votes of people?

reply me i don't know :roll:

http://www.pbase.com/hyunsil

Hmm.. could you ask your visitors what browser they are using? I have tried on IE (6 and 5.x) and Opera (7) and I can see "vote for this gallery" and " no comments" and "comment on this gallery".

Maybe what is happening is that the color combination (text color and bacjground color) is somehow hiding the text. If this is so, the following ways may help.

Change the CSS portion :
Code: Select all
DIV,BODY,TD,TH,TR,TABLE,LI,UL,FORM,
BLOCKQUOTE,P,B,I,H1,H2,H3,H4,H5 {
  font-family: verdana,arial,helvetica,sans-serif;
  color : #888888;
  background : white;
}

to
Code: Select all
DIV,BODY,TD,TH,TR,TABLE,LI,UL,FORM,
BLOCKQUOTE,P,B,I,H1,H2,H3,H4,H5 {
  font-family: verdana,arial,helvetica,sans-serif;
  color : #888888;
  background : #ffffff;
}
i.e change "background : white;" to "background : #ffffff;"

or try adding this to the CSS
Code: Select all
a.small {
color : #222222;
}
change "222222" to any color you find good.


Srijith