Changing body text colour

  • Unknown's avatar

    My theme is Pique, and there are a couple of little things I’d like to change on my site with CSS:
    – the colour of the default body text is white with a grey shadow, and I’d like to change it to a dark colour
    – I’d like to center the headings of blog posts and headings of pages in the grid template

    I was able to change the body text font with this, can someone help me slip in some code

    body {
    padding: 0px 0 50px 0;
    font-size: 16px;
    min-height: 100%;
    font-family: Georgia;
    font-weight: 400;
    font-style: normal;
    font-colour: #
    line-height: 25px;
    }

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, to change the color on the body text in the front page panels, add the following to your custom CSS. I removed the text shadow since when we go to black text, the shadow actually makes the text harder to read.

    .pique-panel-content {
    	color: #000;
    	text-shadow: none;
    }

    The following will center the titles on the recent posts and also the h3 titles you put into the Artists section.

    .pique-template-recent-posts .entry-title {
    	text-align: center;
    }
    #post-53 h3 {
    	text-align: center;
    }
  • The topic ‘Changing body text colour’ is closed to new replies.