This problem only happens when i'm not logged in, this theme has a minor layout error with sticky postings. (see the image attached)

Strange is that when i am logged in this rounded corner shows correct? What and where should I edit the code to fix this problem? Thank you.

CommentFileSizeAuthor
bug_theme.jpg55.52 KBmarcbloem

Comments

Jeff Burnz’s picture

I need to know what browser are you using (version and operating system if applicable).

marcbloem’s picture

Hi,

this problem occurs in both browsers I use, IE7 and Firefox 3. You can see a live example here: www.bastijn.nl/drupal.

BTW your theme looks very nice! Regards, Marc

Jeff Burnz’s picture

I see, if you make this change it will solve your problem, the issue seems to be related to the Read More link not appearing (because there is nothing to read more of, as these are short articles):

What's changing here are the margins - we need to strip off the margin bottom:

style.css (line 486)

#content-area .node-teaser.sticky .content {
  margin: 10px 15px 0 15px
  padding: 0;
}

After you have made the change to style.css, upload it as per normal, then go to the theme settings page for Pixture Reloaded and click "Save configuration", this re-saves the theme settings (which you must do for this to take effect).

marcbloem’s picture

Hi!

Thanks for looking I really appreciate your work! The problem is now fixed in Firefox but not in IE7 yet (www.bastijn.nl/drupal).

Should another "#content-area .node-teaser.sticky" be changed?

Thanks, Marc

Jeff Burnz’s picture

Try fiddling with the CSS in the ie stylesheet to adjust the paddings and margins as I have shown above - you should be able to get it work ok, sorry I don't have time right now to replicate and work out a fix for you.

marcbloem’s picture

Hi Jeff!

Thanks for putting me on the right direction. After some fiddling, I've finally solved the bug. The only thing to do is to add and change the following code in IE.CSS & STYLE.CSS:

#content-area .node-teaser.sticky .content { margin: 10px 15px 0 15px; padding: 0 0 3px 0; }

Keep up the good work!

Regards, Marc

Jeff Burnz’s picture

Status: Active » Fixed

Well done mate, I thought it would be pretty strait forward, I'll mark as fixed for now.

Jeff Burnz’s picture

Status: Fixed » Closed (fixed)

Closing, all issues appear resolved.

philmck’s picture

You've marked this closed (fixed), but the bug is still there 3 years later - something didn't get propagated.