• Resolved jakry001

    (@jakry001)


    Hi there,

    I’m using the twenty theme and am making a few customisations.

    I’d like to add a colour, or perhaps a background of some sort, to my posts.

    A good example: https://2010dev.wordpress.com/

    In the example the first post has a coloured background. How can I make all my posts appear like that? And could it be possible to perhaps apply a tiled image/background in place of the coloured background?

    Thank you ??
    Ray

Viewing 3 replies - 1 through 3 (of 3 total)
  • You would need to edit the theme’s stylesheet to add a coloured background to your posts. For example, chaging:

    .home .sticky {
    	background: #f2f7fc;
    	border-top: 4px solid #000;
    	margin-left: -20px;
    	margin-right: -20px;
    	padding: 18px 20px;
    }

    in style.css to:

    .hentry {
    	background: #f2f7fc;
    	border-top: 4px solid #000;
    	margin-left: -20px;
    	margin-right: -20px;
    	padding: 18px 20px;
    }

    should add the coloured background to all of your posts.

    And could it be possible to perhaps apply a tiled image/background in place of the coloured background

    Try looking for Background in the Appearance sub-menu.

    Thread Starter jakry001

    (@jakry001)

    ?? thank you for your help. with your help i got it sorted and working the way i wanted it to. thanks again

    No problem. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty ten: is it possible to apply a colour or background to posts?’ is closed to new replies.