When I click a picture on my page, I get a background frame that I don't want.
Probably a css issue,but I have no clue where to look.
What do I have to change and where? This is the page.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
You have padding added to all table cells in this part of your styles.css file:
table th,
table td {
text-align: left;
vertical-align: top;
padding: 4px 7px !important;
padding: 6px 10px;
}
This affects the table around the Highslide image.
You can fix it by adding this to your highslide.css file:
.highslide-container table td {
padding: 0 !important;
}