Home › Forum › Customization › Page (not background) colour
This topic contains 9 replies, has 3 voices, and was last updated by StartupWP 5 years, 5 months ago.
- AuthorPosts
- June 11, 2013 at 4:34 AM #822
I could well be missing something here but I’ve search these forums and also online.
I’d like to work out how to change the colour of my pages – I don’t mean the background, I mean the main area of the screen that displays text!
Please, somebody, tell me it’s easy ;)
June 11, 2013 at 8:42 AM #824#container { background: #FFFFFF; }
June 11, 2013 at 8:52 AM #825Thank you so much!
It was very simple – although finding that answer just wasn’t easy at all (of course it was once I remembered to ask here!).
Would you consider making this an option in future updates?
I know I’m not the only one who has struggled with it because I searched for hours on various WP forums.
June 11, 2013 at 4:58 PM #826No, this type of customization is definitely meant for CSS.
If we added an option for every possible way to customize something we’d have a very bloated theme on our hands, messy overkill options and simply put, where would it end?
I think once most people get used to CSS they come to enjoy the flexibility.
If you want to learn, we’ve provided the resources to, here:
https://startupwp.com/topic/customizing-your-theme/
If you don’t want to, feel free to always post your requests here and we’ll try our best to oblige. :)
October 7, 2013 at 3:38 PM #1169I’ve got a similair problem. I want to change the (same) background into 50% or 70% transparent..
Where and how can i do that??
Thank you in advance!
October 8, 2013 at 12:05 PM #1171Here’s the CSS trick:
#container { background: rgba(255, 255, 255, 0.5); }
0.5
is 50% and0.7
would be 70%.October 10, 2013 at 1:19 AM #1173Thanks! Works great.
Got another issue.. I want the background of my posts like an postcard with photo of the writer and a black square with the publishing date..
Something like this example http://www.vanvondeltxt.nl/blog
The background of the page needs to be transparent.
Thanks again..
Robin
October 10, 2013 at 12:59 PM #1174Give this plugin a try:
October 11, 2013 at 6:56 AM #1176Thanks, can be a usefull plugin, but is not really what i meant..
Results of my posts page http://ditwordtmijnsite.nl/vvtxt/blog/ (background of the posts is still transparent)
Result of a single post http://ditwordtmijnsite.nl/vvtxt/uncategorized/123/And what i need on the posts page is would be something like this http://www.vanvondeltxt.nl/blog
Looking forward to your solution!
October 11, 2013 at 5:28 PM #1177Give this a try:
.post { background: none repeat scroll 0 0 #FFFFFF; border-bottom: 0 none; margin: 20px 0 0; padding: 1px 20px 20px; }
- AuthorPosts
You must be logged in to reply to this topic.