Hey, I'm editing my blog theme and I can't make the post opaque (I have an image background). I'm using Conquer ver. 1 and all the posts are transparent and unreadable.
Hi. Conquer, Ver. 1 and 2, were designed with “transparent” posts (the posts have no background), therefore you have to manually add a background to the posts yourself.
Inside the code, find .posts using command+f or control+f. You should come across a section that looks like the following:
.posts { width:400px; margin-bottom:100px; margin-top:100px; margin-left:200px;}
Add the following below the margin-left bit;
background:#fff; padding:10px;
In the end, the section should now be stylized as;
.posts { width:400px; margin-bottom:100px; margin-top:100px; margin-left:200px; background:#fff; padding:10px;}
You can freely change the background color to whatever you like. Just replace fff with your desired color hex code. The padding bit determines how far the content is away from the edge of the background.
Hope this helped!












