Status
Not open for further replies.
1 comment
Hello my friend, since you haven't got any feedback I will take a look at your site. I'm not a professional webmaster but I'm porn up/downloader for several years now so I will try to do my best. It would be nice if you also could take a look at my site, I've also created a review thread, especially I'm interested in what you think about my domain. OK lets begin (all the points are ment to be positive critic):

1. The covers aspect ratio should stay as in the original picture, they look distorted. How to fix this:
First add the following lines to your style.css file:
PHP:
.screenimg img {
width: 100%;
height: auto;
}

then look in your style.css for this:
PHP:
.screenimg {
width: 100;
height: 100%;
float:left;
position: relative;
}
and add this line:
PHP:
overflow: hidden;
so it looks like this:
PHP:
.screenimg {
width: 100;
height: 100%;
float:left;
position: relative;
overflow: hidden;
}

I hope I could help you, there might be a better solution (now the images get cropped in the bottom and in the right only) but I'm not a Webdesigner or anything.

I will add some other points to the review later if you want, just PM me since some people don't like to be reviewed like this.

Edit:
css.png
Look what I mean:
 
Last edited:
Status
Not open for further replies.
Back
Top