Picture when clicked has background I don't wa

2019-08-17 03:54发布

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.

标签: highslide
1条回答
做自己的国王
2楼-- · 2019-08-17 04:52

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;
}
查看更多
登录 后发表回答