我的问题:
我需要做的:
有人可以帮助我吗?网址:thiago **** solano (.) com (.) br/index2.php/ (retire ****)
很感谢!
更改 PrettyPhoto 的默认宽度和高度:
pp_settings = jQuery.extend({
...
default_width: 500,
default_height: 344,
...
您可以将图像的宽度设置为类似 800px 的固定宽度,或者可能更好,设置为 80% 以获得某种动态宽度。
然后,把图片放到a里面div
,设置左右边距为auto
divImgContainer{
display:inline-block;
margin-left:auto;
margin-right:auto;
}
我真的看不到你的链接。
无论如何,我要做的就是像这样针对那个img(可能是一个类):
<img class="imgClass" src="myImage.jpg" />
.imgClass{
display:block;
margin:0 auto;
}