Page 1 of 1

text font setting in imagevue.css not working anymore

Posted: 17 Nov 2009, 09:30
by alberto
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

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

Posted: 17 Nov 2009, 12:40
by alberto
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???

Posted: 18 Nov 2009, 01:19
by mjau-mjau
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.

Posted: 18 Nov 2009, 03:00
by alberto
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!