Navigation & Sidebar, have them together |
Navigation & Sidebar, have them together |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 13 Joined: Jan 2008 Member No: 614,543 ![]() |
I'm using generator and wanted to move the usericon and navigation to the left side - as if it were in a sidebar. I managed to move the navigation and icons to the side using the shadow id.
But I would like the journal name, website, user info, & calender text/links to show up under the icon. I can't seem to figure that out. If I change the meta id then everything including the "mood" squishes together where you can't read it. How do I fix this? Also, is there any way to make the icon and naviagtion static? Say, if I inserted them into a sidebar? And how would I do that? |
|
|
![]() |
![]()
Post
#2
|
|
![]() This bag is not a toy. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 3,090 Joined: Oct 2007 Member No: 583,108 ![]() |
This is what I've changed in the code to make the navigation and sidebar appear "inline" and also not scroll. Keep in mind that Internet Explorer 6 and below do not support position: fixed; and because I don't have a Windows computer I don't have a way to test this code in IE 6 (I think what might happen is that everything will be positioned normally, but it will scroll rather than remaining fixed). This should work in Firefox, IE7, and Safari, however:
CODE #sidebar{ position: absolute; top: 260px; left: 234px; width: 134px; height: 202px; height: auto; visibility: transparent; background :#FCE1EA; color: #B73371; padding: 5px; border: 1px solid #B73371; position: fixed; } .shadowed { height: 30px; position: fixed; } Replace your current sidebar code with that. Let me know if I can help with anything else, how that works, etc. ![]() |
|
|
![]() ![]() |