Picture when clicked has background I don't want

寵の児 提交于 2019-12-13 06:13:13

问题


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;
}


来源:https://stackoverflow.com/questions/17908433/picture-when-clicked-has-background-i-dont-want

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!