The issue is the white space left under $links.
For some odd reason this space aligns with left navigation. (=white space until left navigation ends)

This might have to do someting with "links inline" Css tag in the code. Tried all I could imagine, but with no luck...

   <div class="links">


<ul class="links inline"><li class="first last statistics_counter"><span class="statistics_counter">863 reads</span></li>

</ul>

</div>  </div>

Many thanks for help in andvance.

Comments

tonyn’s picture

It seems the problem may be the class "forum-topic-navigation clear-block" just above .links

http://drupal.org/node/138548 - This issue describes a fix.

Add this to your style.css:

/* clearing issue with forum posts */
.clear-block:after {
clear: none;
}

.topic-next {
float: none;
}
.forum-topic-navigation { height: 1.35em; }

Committed. Tell me how that works out for you.

lenkkivihko’s picture

Works perfectly! Many thanks! Open source rocks!

tonyn’s picture

Status: Active » Fixed

Awesome.

lenkkivihko’s picture

StatusFileSize
new312.47 KB

Similar issue with guestbook. See picture attached.

tonyn’s picture

StatusFileSize
new57.07 KB

Using http://drupal.org/project/guestbook? I am not able to reproduce this bug with that module.

lenkkivihko’s picture

Yes guestbook. And the fix for links implemented as described above. FF + Ubuntu as the setup.

Strange.... (I still have the issue..)

lenkkivihko’s picture

StatusFileSize
new292.66 KB

And I have the same issue with tabs. I use the jstools tabs module.

tonyn’s picture

I still cannot find the guestbook clearing problem.

However, I was able to isolate the clearing in jstools to this snippet of code on line 30 of styles.css.

.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
} 

Removed the clear: both, and you will fix the clearing issue. Inside the box window the list will be squinched-in though.

Edit: I will be releasing a new major rewrite of FriendsForever nista in the near future (within the month) that should deal with these clearing issues.

lenkkivihko’s picture

StatusFileSize
new163.69 KB

Behaviour reproduced.
* Fixes the clearing issue.
* But introduces the issue of list / tab content moving to right. (see attached picture)

tonyn’s picture

StatusFileSize
new40.32 KB

Tabsexample shows fine for me.

How did you get that list there? What modules are you using?

lenkkivihko’s picture

Title: Issue with Forum - links get misaligned. » CSS's in the page.

CSS's on that page:

@import "modules/book/book.css";

@import "modules/contrib/cck/content.css";

@import "modules/contrib/event/event.css";

@import "modules/contrib/jstools/tabs/drupal-tabs.css";

@import "modules/contrib/jstools/tabs/tabs.css";

@import "modules/contrib/og/og.css";

@import "modules/node/node.css";

@import "modules/poll/poll.css";

@import "modules/system/defaults.css";

@import "modules/system/system.css";

@import "modules/user/user.css";

@import "modules/contrib/date/date.css";

@import "modules/contrib/cck/fieldgroup.css";

@import "modules/contrib/panels/layouts/twocol_stacked.css";

@import "themes/friendsforever/style.css";
=================
The pager (e.g., on the Tracker page) had a similar issue. I edited the system.css file in:
.pager {
margin: 1em 0 0 7em;
}

and removed one line (clear: both;). That fixed the issue.

lenkkivihko’s picture

Title: CSS's in the page. » Clearing issues.

CSS's on that page:

@import "modules/book/book.css";

@import "modules/contrib/cck/content.css";

@import "modules/contrib/event/event.css";

@import "modules/contrib/jstools/tabs/drupal-tabs.css";

@import "modules/contrib/jstools/tabs/tabs.css";

@import "modules/contrib/og/og.css";

@import "modules/node/node.css";

@import "modules/poll/poll.css";

@import "modules/system/defaults.css";

@import "modules/system/system.css";

@import "modules/user/user.css";

@import "modules/contrib/date/date.css";

@import "modules/contrib/cck/fieldgroup.css";

@import "modules/contrib/panels/layouts/twocol_stacked.css";

@import "themes/friendsforever/style.css";
=================
The pager had a similar issue. I edited the system.css file in:
.pager {
margin: 1em 0 0 7em;
}

and removed one line (clear: both;) . That fixed the issue.

Anonymous’s picture

Status: Fixed » Closed (fixed)

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