<em>@kempis20 357087 wrote:</em><blockquote>How can i change the white or black colour to a prefered colour of mine?</blockquote>
Download Google Chrome and use the inbuilt developer tools to see the css – there are plenty of video guides online.
Then you can see the css and where it is to change it. As a start for you, and just for the landing page (i.e. home), you will need to change the background or background-color on these elements…
core.css
.wrap {background: #1a1a1a;}
template.css
#toolbar {border-bottom: 10px solid #fff; padding: 50px 0 20px;background: #000;}
#masonry-container {background: #1a1a1a;}
.masonry .item-timeline {background-color: #1a1a1a; background-image: url(../images/readmore-pattern.png);}
.masonry .item-more {bottom: 0;cursor: pointer;width: 100% !important;height: 60px !important;background: #000;}
You’ll then need to restyle some of the backgrounds on text boxes and do the other pages. But this gives you a start. Don’t forget to save a copy of the original css files first.