Table highlight
-
Hi,
On one of my blogs I made an opening table with a background image. The table has 2 rows and 3 columns. The funny thing is, that the mouse hoover highlight does by rows not by data, which made it look wierd a bit. What should I do to turn this hightlight off?
The page is: https://gergotest1.wordpress.com/
Thank you in advance.The blog I need help with is: (visible only to logged in users)
-
This has nothing to do with the fact that the images are links: it’s part of the default styling of tables on Expound. If you had the Custom Design upgrade you could change it once for all; without the upgrade you have to override it by adding styling to each td tag.
Also (a), border=”0″ is outdated coding that has no effect. You need additional styling to remove the border that shows at the middle and at the bottom.
Also (b), Expound is responsive: it shrinks to adapt to lower resolution screens and mobile devices. So when this happens your images will shrink but the bg image won’t (drag the browser window to make it narrower and see it happen). You need to take care of that too.In all, turn the opening table tag to this:
<table style="background-image:url('http://gergotest1.files.wordpress.com/2013/11/bubble_box_bcg_kisebb2.png');background-size:100% 100%;">
And turn all opening td tags to this:
<td style="background-color:transparent;border:0 none;"> -
Thank you very much for your quick help. It solved my problem. I must learn new coding. :)
-
You’re welcome!
My tutorial might be useful to you:
- The topic ‘Table highlight’ is closed to new replies.