Customizing Oxygen Theme

  • Unknown's avatar

    I’m using the Oxygen theme, and very happy with it. At this point, the site (portfolio/blog) is mostly set, but I’m trying to sort out a bit of CSS customization.

    1. On the sticky post pages, under the static page links, is a header beginning with “Category Archives”. I’d really like to make this disappear! The type is huge and distracting.

    I think I’ve found the code for the header, but I’m unsure of how to proceed. Here’s a sample of the code (hopefully it’s the right bit!):

    <header class=”page-header”>
    <h1 class=”page-title”>
    Category Archives: <span>12 miles</span> </h1>
    </header>

    2. On the showcase page, in the featured image slider, there is a box on the right which shows the post title, and the date. I’d like to know how to get rid of the date, and the box around the date. I know it’s possible to eliminate the date, but the box stays put. Is there a way of fixing this, without deleting the dates on all the posts?

    Thank you!

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

  • Unknown's avatar

    Your site is set to private which means we volunteers can’t see it, so this was worked out from the theme demo site. Give it a try.

    .category h1.page-title {
    display: none;
    }
  • Unknown's avatar

    To hide the date and the box surrounding the date in the featured image slider on the Oxygen theme home page, add this to your Appearance → Custom Design → CSS editor:

    .featured-post footer {
        display: none;
    }
  • The topic ‘Customizing Oxygen Theme’ is closed to new replies.