delete visible dates below blog entries and the calendar

  • Unknown's avatar

    I want to delete visible dates below blog entries and delete the calendar on the opening page.

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

  • Unknown's avatar

    To hide dates below posts in the Reddle theme, add this to your Appearance → Custom Design → CSS:

    .home .widget_calendar {
    	display: none;
    }
    
    article .entry-meta .sep,
    article .entry-meta .entry-date {
    	display: none;
    }

    To hide the calendar widget just on the home page, add this to your Appearance → Custom Design → CSS:

    .home .widget_calendar {
    	display: none;
    }
  • The topic ‘delete visible dates below blog entries and the calendar’ is closed to new replies.