简体   繁体   English

图像定位不正确

[英]Images not positioning correctly

For some reason, on this page, the images are not positioned neatly inside the rectangles; 由于某些原因,在页面上,图像未整齐地放置在矩形内; instead they are shifted slightly to the right in IE, Chrome, and Firefox. 而是在IE,Chrome和Firefox中将它们向右稍移。

<img height="350" width="150" class="product_image" id="product_image_<?php echo wpsc_the_product_id(); ?>" alt="<?php echo wpsc_the_product_title(); ?>" src="<?php echo wpsc_the_product_thumbnail(); ?>" />

I set the image to have a height of 350 and width to be 150 for uniformity. 我将图像的高度设置为350,将宽度设置为150以保持均匀。 The "rectangle" itself is “矩形”本身就是

<div class="item_image">
                        <a href="<?php echo wpsc_the_product_permalink(); ?>"> <!--IMG HERE--></a></div>

I am using the WP e-Commerce Grid View Lite plugin with WP e-Commerce (another Wordpress plugin). 我正在将WP e-Commerce Grid View Lite插件与WP e-Commerce(另一个Wordpress插件)一起使用。

The problem is in the index file ( http://yadress.com/make-it-yourself/ ) on the line 116. On the anchor selector. 问题出在第116行的索引文件( http://yadress.com/make-it-yourself/ )中。在锚点选择器上。

.product_grid_display .item_image a {
    width: 350px
}

Removing the width property from that anchor solves the issue. 从该锚点删除width属性可以解决此问题。

You have 3 options 您有3个选择

  1. Distortion the image to fit the frame (div), so bad 扭曲图像以适合框架(div),太差了

    .product_grid_display .item_image a { width: 350px; .product_grid_display .item_image a {宽度:350像素; height :150px; 高度:150px; } }

  2. Create a fixed-size frames , and overfollow attributes : hidden 创建一个固定大小的框架,并设置以下属性:隐藏

    .item_image{width:px;height:150px;overfollow:hidden;}.item_image img{widht:100%} .item_image {width:px; height:150px; overfollow:hidden;}。item_image img {widht:100%}

  3. use timthumb to crop a picture fit the frame.(recommend, this is the best way, also good for page speed) This website uses timthumb, you can refer to this site 使用timthumb裁剪适合框架的图片。(推荐,这是最好的方法,也有利于页面速度)本网站使用timthumb,可以参考网站

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM