On reload different width of portfolio text

50 Views Asked by At

You have helped me out great with the code for my portfolio website!!

There is only one problem remaining that I discovered the other day.

When you click a portfolio item it opens. If you close it, it closes. But if you open the same portfolio item again the text width becomes really narrow!

2

There are 2 best solutions below

3
On

Works fine in IE10 and FireFox.

I tried on the bottom-left-hand corner picture (P7). It seems chrome (for exemple) doesn't like max-width.

You could try to replace

#p7{
max-width:850px;
}

by

#p7{
width:850px;
}
2
On

an edit in style.css:711 will solve the issue

#alldescriptions {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 850px;
    }