Livejournal
Log in
Post
Friends
My journal
sakuresu
in
everything_lj
big gaps in calendar
Feb 21, 2006 12:06
Hello it's me again ^^;
I made a new layout and everything works as it should.
The only problem I have is my calendar: There are huge gaps betwen the numbers and all.
take a look:
http://bgh252.livejournal.com/calendar
(
code
)
Leave a comment
Comments 2
babyelefant
February 21 2006, 13:10:04 UTC
It's this:
div {
padding-top:310px;
margin-left -300px;
}
div div {
background:transparent;
width:auto;
height:auto;
padding:0x;
}
as far as I can see, you can remove the whole block of code and use a more "normal way" to shift your entries and sidebar down
Hint: Shifting journal contents downwards is explained in
howto
's memories
and your sidebar can be shifted down with this part of your code:
/*YOUR SIDEBAR*/
#stuff{
position:absolute;
top:-5px;
left: 50%;
margin-left: -16px;
width: 127px;
height: 100%;
visibility: visible;
z-index:2;
font-size:8pt;
}
Reply
sakuresu
February 21 2006, 13:39:19 UTC
Found it and fixed it =D
Thanks very much!
Reply
Leave a comment
Up
Comments 2
div {
padding-top:310px;
margin-left -300px;
}
div div {
background:transparent;
width:auto;
height:auto;
padding:0x;
}
as far as I can see, you can remove the whole block of code and use a more "normal way" to shift your entries and sidebar down
Hint: Shifting journal contents downwards is explained in howto's memories
and your sidebar can be shifted down with this part of your code:
/*YOUR SIDEBAR*/
#stuff{
position:absolute;
top:-5px;
left: 50%;
margin-left: -16px;
width: 127px;
height: 100%;
visibility: visible;
z-index:2;
font-size:8pt;
}
Reply
Thanks very much!
Reply
Leave a comment