-
Improvement
-
Resolution: Invalid
-
Trivial
-
None
-
None
URL to article: https://www.phpbb.com/support/docs/en/3.1/kb/article/prosilver-profiles-on-left/
Edit: IN fact, most of the steps are outdated
The 'find' instruction cannot be found, as box-sizing attributes have since been added to the arrachbox class.
New 'find' instruction should be:
/* Attachments
|
----------------------------------------*/
|
.attachbox {
|
float: right; |
width: auto; |
max-width: 100%; |
margin: 5px 5px 5px 0; |
padding: 6px; |
border: 1px dashed transparent; |
clear: right; |
-webkit-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
box-sizing: border-box;
|
}
|
And the 'replace with' instruction should be updated accordingly.