Question regarding Adelle CSS

  • Unknown's avatar

    I changed the CSS for the post date background colour to be white (so the circle wouldn’t show). This worked perfectly until a few days ago and it now shows as black. My CSS still shows as white so I’m not sure what happened?

    My CSS is this:
    .post-date {
    background: WHITE;
    border-radius: 100px;
    float: left;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1;
    margin-right: .667em;
    padding: .95em 1.05em;
    text-align: center;
    text-transform: uppercase;
    width: 48px;
    }

    Thanks for any help with this.

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

  • Unknown's avatar

    Hi!

    You should be able to fix this up by adding .entry-header to the selector. So, this should work:

    .entry-header .post-date {
    	background: WHITE;
    	border-radius: 100px;
    	float: left;
    	font-size: 12px;
    	font-size: 1.2rem;
    	line-height: 1.1;
    	margin-right: .667em;
    	padding: .95em 1.05em;
    	text-align: center;
    	text-transform: uppercase;
    	width: 48px;
    }

    Can you give that a try?

  • Unknown's avatar

    Thank you very much. That worked perfectly!

  • Unknown's avatar
  • The topic ‘Question regarding Adelle CSS’ is closed to new replies.