Leave a comment

Comments 26

(The comment has been removed)

kunzite1 April 7 2006, 00:42:28 UTC
true. however, it takes up space that i'd like to have for journal content. if i want a navigation strip, i'll just go to a site-scheme page.

i could alter the entry to include that they're not related to ads.

Reply

burr86 April 7 2006, 00:48:21 UTC
There's an option to turn it on/off in editinfo.bml, though.

Reply

kunzite1 April 7 2006, 00:49:08 UTC
good point.

i like having things not be there anyway.

will add that note as well.

Reply


burr86 April 7 2006, 00:46:55 UTC
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

Reply

kunzite1 April 7 2006, 00:48:11 UTC
an ad-free environment for those who do see ads, i suppose.

Reply

burr86 April 7 2006, 00:49:30 UTC
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. ;)

Reply

kunzite1 April 7 2006, 00:52:52 UTC
*shrug*

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


ex_uniquewo April 7 2006, 16:09:43 UTC
If for some reason you're a die-hard Control Strip hater, in S1 you can use:

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

kunzite1 April 7 2006, 16:37:49 UTC
isn't that overkill?

wouldn't the following be sufficient?
html body {
padding: 0 0 0 0 !important;
}
#lj_controlstrip {
display: none !important;
}

Reply

ex_uniquewo April 7 2006, 16:39:52 UTC
It didn't work for me. But I may have done something wrong.

table or td alone didn't work either.

Reply

ex_uniquewo April 7 2006, 18:29:50 UTC
Erratum:

body {
padding-top: 0px !important;
}

seems to not screw things up on other websites.

Reply


Leave a comment

Up