Wordpress responsive portfolio grid issue

145 Views Asked by At

I have been having problems with a Wordpress theme where the portfolio grid doesn't seem to be spanning 100% across the page.

You can find the problem here after the 'crashes' image box - http://beta.audiopeak.net

Any help with amending this issue would be great.

1

There are 1 best solutions below

7
On

I made these changes to the CSS (screen.css) and it seemed to work (but with limited testing).

Let me know if they work for you.

.one_fourth.gallery4:hover div.thumb_content {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.one_fourth.gallery4 img{
   width: 100%;
}

.page_content_wrapper.full_width {
   width: 102%;
}