So I have been trying to edit the skin to better suit my website and I just have a few CSS questions.

I have been trying to edit out a section which seems weird on my website and it's the box where the titles or "Posted By" resides on the version 3 of the skin ... and I liked how it was in version 2 without the box around the title/posted date information. However, I have been unable to find the section of the CSS code which creates that box in the skin.

I have attached a screenshot of the exact section of the skin which I want to remove myself.

Please help.

Thanks!

CommentFileSizeAuthor
#1 sky-bheader.png761.03 KBdeltatux

Comments

deltatux’s picture

StatusFileSize
new761.03 KB

EDIT: The file didn't attach last time, I'm reattaching it now.

JonoB’s picture

Use Firefox and get an add-on called Firebug...makes this kind of thing super easy.

rajo’s picture

I have the same problem. But if I don't have uploaded avatar, it's not show up. So, this is my "solution". I think, there IS a bug.

el7cosmos’s picture

Version: 6.x-3.7 » 6.x-3.9
Status: Active » Needs review

I've change node.tpl.php on line 12

<div<?php print $attributes; ?>>
    <div class="meta">
      <?php if ($submitted): ?>
      <?php print $picture; ?>
      <?php endif; ?>
      <?php if (!$page && $title): ?>
        <h2><a href="<?php print $node_url; ?>" title="<?php print $title; ?>"><?php print $title; ?></a></h2>
      <?php endif; ?>
      <?php if ($submitted): ?>
        <p><?php print $submitted; ?></p>
      <?php endif; ?>
      <?php if ($terms): ?>
        <div class="terms">
          <span class="icon">&nbsp;</span>
          <?php print $terms; ?>
        </div>
      <?php endif; ?>
    </div>
  <div class="content clearfix">

to this

<div<?php print $attributes; ?>>
    <?php if ($submitted): ?>
    <div class="meta">
      <?php print $picture; ?>
      <?php if (!$page && $title): ?>
        <h2><a href="<?php print $node_url; ?>" title="<?php print $title; ?>"><?php print $title; ?></a></h2>
      <?php endif; ?>
      <?php if ($submitted): ?>
        <p><?php print $submitted; ?></p>
      <?php endif; ?>
      <?php if ($terms): ?>
        <div class="terms">
          <span class="icon">&nbsp;</span>
          <?php print $terms; ?>
        </div>
      <?php endif; ?>
    </div>
    <?php endif; ?>
  <div class="content clearfix">

And that's seems work fine.

rajo’s picture

or :D :

<div<?php print $attributes; ?>>
    <!--<div class="meta">-->
      <?php if ($submitted): ?>
      <?php print $picture; ?>
      <?php endif; ?>
      <?php if (!$page && $title): ?>
        <h2><a href="<?php print $node_url; ?>" title="<?php print $title; ?>"><?php print $title; ?></a></h2>
      <?php endif; ?>
      <?php if ($submitted): ?>
        <p><?php print $submitted; ?></p>
      <?php endif; ?>
      <?php if ($terms): ?>
        <div class="terms">
          <span class="icon">&nbsp;</span>
          <?php print $terms; ?>
        </div>
      <?php endif; ?>
    <!--</div>-->
  <div class="content clearfix">
jacine’s picture

Status: Needs review » Closed (fixed)

Thank you rajo!