Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Buzzsprout

    (@molehill)

    You can hide whatever you want by using a little CSS. I’ll give you an example below…

    The HTML output of an embedded episode looks like this

    <div class="episode">
      <h3>This is the episode title</h3>
      <object width="330" height="37">...</object>
      <p class="download">...</p>
      <p class="date">...</p>
      <p class="artist">...</p>
      <p class="description">...</p>
    </div>

    So your CSS could look like this

    <style type="text/css">
    div.episode p.description { display: none; }
    </style>

    If you drop that CSS into your main stylesheet document, HTML or HTML template, you should be good to go. You can of course style the other elements the same way…make them look however you want.

    Thread Starter mikemoriendi

    (@mikemoriendi)

    Awesome, worked perfectly. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Description’ is closed to new replies.