The only people who can make custom layers are the people who will (a) never have ads on their journal; (b) never see see ads. So what purpose does this serve? :P
Except those who see ads will never be able to use this; they (and free users) won't be able to create their own custom layers, so ?style=mine won't work. Having the journal owner do it likewise won't work, because journal owners who can do this customization won't be serving ads on their journal.
So this is basically setting the prop to false when it's already going to be false. ;)
Comments 26
(The comment has been removed)
i could alter the entry to include that they're not related to ads.
Reply
Reply
i like having things not be there anyway.
will add that note as well.
Reply
Reply
Reply
So this is basically setting the prop to false when it's already going to be false. ;)
Reply
as i'm sure most of us know, i like layout hacking.
so. i'll use that to do things.
if a free user or an ad user views a paid/perm journal, will they see ads by default?
Reply
html body {
padding: 0px !important;
}
#lj_controlstrip table
{
top: 0;
left: 0;
width: 0% !important;
height: 0px !important;
margin: 0px !important;
padding: 0px !important;
position: absolute;
visibility: hidden !important;
display:none !important;
background-image: url() !important;
border: 0px important;
}
#lj_controlstrip td
{
top: 0;
left: 0;
width: 0% !important;
height: 0px !important;
margin: 0px !important;
padding: 0px !important;
position: absolute;
visibility: hidden !important;
display:none !important;
background-image: url() !important;
border: 0px important;
}
to your CSS to prevent people from seeing that awful thing ever. Some stuff may need to be added in other selectors depending on your layout.
~The Anti Control Strip Movement
Reply
wouldn't the following be sufficient?
html body {
padding: 0 0 0 0 !important;
}
#lj_controlstrip {
display: none !important;
}
Reply
table or td alone didn't work either.
Reply
body {
padding-top: 0px !important;
}
seems to not screw things up on other websites.
Reply
Leave a comment