For those who have run into this issue, it seems to be related to the over effect over a table possibly or just a style issue. Anyway this is how you get rid of it, it may or may not work for you, but I have two pieces of code which may help you.
The first is one suggested by GraphicCove at the WordPress Support Site
1 2 3 |
.bSe table tbody tr:first-child { border-top: 3px solid #ebebeb; } |
Either add into your styles for your theme which I don’t like modifying my them, so I use the CSS Plus Plugin and can add code for each post page.
The other one you can try is this piece of code which I found, which worked on my 2nd blog before I found the above code.
1 2 3 4 5 6 7 8 9 10 |
.table-hover>tbody>tr:hover { background-color: transparent; } OR THIS ONE #page .table tr>td, #page .table tr>th { border: 0; } |
The other one GraphicsCove suggested you try is the following if his first one doesn’t help
1 2 3 |
.bSe table tbody tr:first-child { border-top: 3px solid #ebebeb;!important } |
You can check out the suggestions from GraphicsCove here on the WordPress Support Site
You may also be interested in the Amazon API Post or the PHP Email Form
I would love to hear from you and if I have missed anything, let me know and I will add it.
I would appreciate you linking back to my blog if you found any of these articles useful
Steven has a technical background in System Design, Unix Systems and Enterprise Architecture & Design. He also has a background with 15 years of Unix Systems Primarily HP-UX, Linux and AIX Open Systems. He also has a background in programming languages such as C, Perl, PHP, CGI and Web Environments.