Defect #9611
closedSidebar
0%
Description
The sidebar is not aligning to the right of the content window instead it is floating down. I tried changing the float property in the base.rhtml file but still it goes to the bottom. Please help me out. I am attaching a screenshot of the same
Files
Updated by Jean-Philippe Lang about 13 years ago
- Status changed from New to Closed
- Resolution set to Invalid
This problem doesn't occur with default themes.
Updated by Kaushik Ramkrishnan about 13 years ago
- File Sidebar.png Sidebar.png added
Sir,
It is happening with default theme too.
Updated by Mischa The Evil about 13 years ago
I'm not able to reproduce this with the default themes on a vanilla Redmine (source:/trunk@7853) either.
Updated by Kaushik Ramkrishnan about 13 years ago
Sir,
It happened when I created a sub project and then deleted the same. After I went back to the issue list for the parent project,the issue list floated to the right and when I went to check the base.rhtml file, I could see that the content and sidebar statements were not as it should be. I was able to fix the floating issue list but the sidebar still sticks to the bottom on the right side. I also tried using the clear property for it, and it was still the same. Below is the code snippet from that file.
<%= tag('div', {:id => 'main', :class => (has_content?(:sidebar) ? '' : 'nosidebar')}, true) %>
<div id="content">
<%= render_flash_messages >
<= yield >
<= call_hook :view_layouts_base_content %>
<div style="clear:none;"></div>
</div>
<div id="sidebar">
<%= yield :sidebar >
<= call_hook :view_layouts_base_sidebar %>
</div>
</div>