Various modifications for phpBB3Verander de lelijke witte bijlage box in berichten

Snippets for phpBB3
Previous topicNext topic
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/src/Template.php on line 359: Array to string conversion
Array

Topic Author
dmzx
Founder
Founder
Status: Offline
User theme: Dark
Posts: 6485
Joined: Jan 13th, '14, 20:45
    unknown unknown

Verander de lelijke witte bijlage box in berichten

Post by dmzx »

Verander de lelijke witte bijlage box in berichten

Open styles/###/theme/colours.css
Find This may be a partial find and not the whole line

Code: Select all

.attachbox {
       background-color: #FFFFFF;
       border-color:  #C9D2D8;
    }
Replace with Replace the preceding lines with the following

Code: Select all

.attachbox {
       background: inherit;
       border-color:  #C9D2D8;
    }
Open styles/###/theme/contents.css
Find This may be a partial find and not the whole line

Code: Select all

Code: Select all
    .attachbox {
       float: left;
       width: auto;
       margin: 5px 5px 5px 0;
       padding: 6px;
       background-color: #FFFFFF;
       border: 1px dashed #d8d8d8;
       clear: left;
    }
Replace with Replace the preceding lines with the following

Code: Select all

.attachbox {
       float: left;
       width: auto;
       margin: 5px 5px 5px 0;
       padding: 6px;
       background: inherit;
       border: 1px dashed #d8d8d8;
       clear: left;
    }

Previous topicNext topic