Very frustrating blue bars and sections on Google Chrome, what is this?
I am having a frustrating issue with Google Chrome for the first time.
I have a site that has started to get pretty heavy with graphics and today I started seeing blue sections开发者_Go百科 over certain parts of my page. See the graphic below.
I have tried to back out any changes and remove some graphics to lighten the page up but I am still seeing blue bars and sometimes the blue fills the full background.
I'm using transparent PNGs heavily and am creating a side scroll scene but haven't had any problems until now. Why does Chrome place these blue bars on my page? Thanks for any help you could offer.
REMOVE BACKGROUND COLOR FROM YOUR HTML.
eg: <table style="background-color: rgb(208, 208, 208);" align="center" border="0" cellpadding="0" cellspacing="0" width="960">
To: <table style="background-color: transparent;" align="center" border="0" cellpadding="0" cellspacing="0" width="960">
And Declare Graphics image ONLY!! Not BACKGROUND COLOR
Hope this helps.
精彩评论