The Node title of the node below the iPaper seem sto be lifted.

This happens with Zen theme but not with Garland on my test site.So am not sure whether this can be fixed at iPaper.

Pls see the image attachment.

-thank you

CommentFileSizeAuthor
#2 ipaper_before.jpg98.88 KBnick5768
#2 ipaper_after.jpg105.92 KBnick5768
ipaper.JPG16.27 KBnirvanajyothi

Comments

rares’s picture

It definitely depends on the theme. I have themes that build a box around the teasers for each node and keep them separate, and others let them get mixed up.
I tried fixing this through the module, and didn't succeed. but I don't know CSS that well, so maybe someone knows how to style it better.
Maybe you can compare the modules and how they differ in CSS over how they style teasers.
Rares

nick5768’s picture

Title: Theme error » Theme error - possible fix
StatusFileSize
new105.92 KB
new98.88 KB

I was able to fix my issue by adding the "clear-block" class into the div that displayed the content in my node.tpl.php
FYI this was the base Zen framework (I may have changed some slight things, but not many).

node.tpl.php before:
...

print $content;

...

node.tpl.php after:
...

print $content;

...

Hope this helps someone.

TravieMo9’s picture

Version: 6.x-1.0-rc2 » 6.x-1.0-rc8

This may apply to me. Thumbnails are displayed diagonal pattern in IE as if no break between. Don't really understand nick5768 solution above. Can't see a difference in the code before and after. I tried to take this out with CSS but not successful. I put a large right margin in div for each thumbnail. It made the thumbs break but the title was misplaced to the far right.

rares’s picture

Title: Theme error - possible fix » Thumbnails overlapping with other nodes in lists of teasers
Status: Active » Fixed

The one solution that I've found is using the following code in ipaper.css. The downside is that if there isn't enough text to fill the height of the height of the thumbnail, the teaser text will be displayed below.
If enough people think that this works, I can replace the css file with this in the next version.

div.ipaper-descr-teaser{
  position: relative;
  left: 5px;
  display:inline-block;
}

img.ipaper-thumbnail{
  border-style: solid;
  border-width: 1pt;
}

div.ipaper-license{
  text-align: center;
}

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.