Search…

X3 Photo Gallery Support Forums

Search…
 
alberto
Experienced
Topic Author
Posts: 120
Joined: 24 Apr 2007, 16:35

text font setting in imagevue.css not working anymore

17 Nov 2009, 09:30

suddently all my text font setting in my homepage are disappeared. all the text are in black , times new roman, although I set them arial and different color. mainemenu_node is set display: none but I can see it, etc.
is like it doesn't match anymore with my imagevue.css stylesheet :x
 
alberto
Experienced
Topic Author
Posts: 120
Joined: 24 Apr 2007, 16:35

Re: text font setting in imagevue.css not working anymore

17 Nov 2009, 12:40

alberto wrote:suddently all my text font setting in my homepage are disappeared. all the text are in black , times new roman, although I set them arial and different color. mainemenu_node is set display: none but I can see it, etc.
is like it doesn't match anymore with my imagevue.css stylesheet :x
please can somebody help me???
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

18 Nov 2009, 01:19

You gotta be careful when editing these files so you dont break them, which you have done to this stylesheet. I checked your css and you have:
Code
.tooltip_name {
display: none;
        
.tooltip_date {
}
You deleted the closing } somehow in the .tooltip_name, which is corrupting your entire css.
 
alberto
Experienced
Topic Author
Posts: 120
Joined: 24 Apr 2007, 16:35

18 Nov 2009, 03:00

mjau-mjau wrote:You gotta be careful when editing these files so you dont break them, which you have done to this stylesheet. I checked your css and you have:
Code
.tooltip_name {
display: none;
        
.tooltip_date {
}
You deleted the closing } somehow in the .tooltip_name, which is corrupting your entire css.
thanks Karl as usual!