vote up 5 vote down star
1

How can I hide the div without using display:none or JavaScript?

In my country, a lot of Blackberrys come with the CSS support disabled (the mobile companies here are not so good to developers). I have text that says

<div class="BBwarn">
please activate your css support and a link
</div>

I want to hide that once the user activates CSS support, but i can't use display:none; because it is only supported in BB firmware 4.6. It is a public site and I can't make all my visitors upgrade.

Does anybody knows a solution to this? I hope the question is easier to understand now.

Update: Thank you all for the answers but I can't use

  • position:absolute
  • overflow

because they are available from Blackberry firmware 4.6 and up

flag
I know you want a javascript-free solution but I can't help but wonder why can't you just remove the element from the DOM tree with javascript? – DrJokepu Dec 13 '08 at 0:11
javascript comes disabled by default in the same phones – rblanch Dec 14 '08 at 0:13

14 Answers

vote up 2 vote down

You could position it absolutely off the screen.

But I, also, am not a mobile developer.

link|flag
I don't know how to do that without using margin – rblanch Dec 12 '08 at 19:31
vote up 2 vote down

This is a common way: margin-left: -9999;

link|flag
doesn't work previous to 4.6 firmware – rblanch Dec 12 '08 at 19:24
in that case replace the text in the div: <div class="BBwarn"> please upgrade your device if you want this to go away </div> and make it bold red and blinking (if that works) :D – krusty.ar Dec 12 '08 at 21:15
vote up 1 vote down

visibility: hidden; will work, but the space taken up by that particular div will still appear. If you are going to use the negative left-margin method, remember that you will need to set the object's position to absolute.

link|flag
vote up 0 vote down

Sorry @Shog9 this is my first question here

Ok to clarify

In my country a lot of Blackberrys come with the css disabled (the mobile companies here are not so good to developers) I have a text that says

<div class="BBwarn">
please activate your css support and a link
</div>

I want to hide that once you activate the css support but i cant use display:none; because it is only supported in BB firmware 4.6. It is a public site and I can't make all my visitors upgrade

Does anybody knows a solution to this ? I hope the question is easier to understand now

link|flag
I've edited your question to include these details - you should always do this, rather than adding detail in replies. Thanks for the clarification! – Shog9 Dec 12 '08 at 17:32
vote up 1 vote down
<div style="height:0;width:0;overflow:hidden;">
<!-- content here -->
</div>

Incidentally, this is what I do to preload images, which is nice because it doesn't use javascript.

Visibility:hidden won't do the same thing because some browsers are smart and won't make the request unless it thinks its actually visible.

link|flag
overflow only works with 4.6 and up – rblanch Dec 12 '08 at 19:29
d'oh! well that sucks. – Daniel Schaffer Dec 12 '08 at 19:37
i don't understand why this is better than using javascript? if someone without JS comes to your site, they'll download a heap of images they'll never see (presuming these images are used for rollovers, lightboxes, etc) – nickf Dec 20 '08 at 2:40
vote up 2 vote down

things to try:

  • use the z-index to put it behind some other element
  • move it off the screen by absolute positioning
  • visbility: hidden
  • make the content "invisible" by setting background to foreground color (works only for text)
  • opacity: 0

but the real question is: why?

link|flag
because i want the warning to disapear once you have activated css – rblanch Dec 12 '08 at 18:53
vote up 1 vote down

Why not try the simple:

position: absolute;
left: -1000px;

I can't see why it wouldn't work.

link|flag
You can't use position in firmware previous to 4.6 but thanks – rblanch Dec 15 '08 at 18:15
vote up 0 vote down

Do you also have to activate Javascript? You could just remove the div with javascript in the onfocus. (I'm expecting this only works in 4.6)

link|flag
no , maybe it works with earlier phones but the mobile company also disables javascript by default 32% of my traffic comes form blackberrys and a lot of them don't have neither css nor javascript activated hence the users dont get the best they could on the same device – rblanch Dec 13 '08 at 18:18
vote up 0 vote down

How about:

  visibility: hidden;

That should hide the DIV, (note how it will still be rendered but be invisible, that means it will take space in the document as if it was visible, but be invisible (unlike display:none; where the div will not be rendered)).

link|flag
See comments by mfx and myself above. – cLFlaVA Dec 15 '08 at 18:31
Yeah I noticed after posting. – Pim Jager Dec 15 '08 at 18:48
vote up 0 vote down

I assume You don't want to use JavaScript because the Blackberrys don't support it.

What about if you did the opposite and displayed the block of code with JavaScript, rather than tried to hide it?

<script type="text/javascript"><!--
document.open();
document.writeln('<div class="BBwarn">');
document.writeln('please activate your css support and a link');
document.writeln('</div>');
document.close();
//--></script>

This is a bit of a hack, but would not display the text with disabled JavaScript...

link|flag
Your solution doesn't work because I want to show the warning to phones with css and javascript disabled . Thanks anyway. – rblanch Dec 15 '08 at 18:42
vote up 1 vote down

I'm not sure of the percentages you're talking about that are using < 4.6, but if it's that important to you, then I can see a rationale for accepting that you can't please all the people all the time, and an acceptable cascading solution to this should be achievable. Probably with a link to explain the benefits of upgrading and enabling css.

height: 0; 
overflow: hidden;
visibility: hidden; 
color: #fff; 
background: #fff;

BTW - you'd better make sure that you're css is good if you're telling someone to turn it on... :-)

Cheers,
Steve

link|flag
Nice -- didn't think of using color/background-color! Maybe toss in font-size: 1px;? – strager Dec 15 '08 at 22:37
Hmm; actually, this was written a few days ago by @mfx... – strager Dec 15 '08 at 22:42
@strager - I think the main thing here though is that you should consider how important this is. If it's that important, then having a link to it for some users who already have css enabled shouldn't be that big a deal if it's explained to them – Steve Perks Dec 15 '08 at 22:56
@Steve Perks I am considering it but it is the last resource. – rblanch Dec 17 '08 at 16:43
vote up 2 vote down

What makes you think display: none is not supported before version 4.6? Did you test that, or are you going by their documentation?

I'm not a mobile developer either, so I'm just going by what I gleaned from the documentation.

The BlackBerry Browser 4.6 CSS Reference indeed mentions "Availability: BlackBerry® Device Software version 4.6 or later" for the display property, but their BlackBerry Browser 4.3 Content Developer Guide indicates that 4.3 already supported a very limited version of the display property, including display: none. Versions before 4.3 don't support the display property (again, going by the BlackBerry Browser developer documentation).

Can you assume your users do at least have firmware version 4.3, or is that just as unacceptable as assuming they have 4.6?

Have you tried simply setting the width and height to zero? I'm not familiar with the BlackBerry (Browser), but I'm sceptically assuming its CSS support is less than perfect, certainly on the older versions. I wouldn't be surprised if this worked:

.BBwarn {
    display: none; /* for 4.6 and up */
    width: 0px;    /* for 4.3 */
    height: 0px;
}

But then width and height are only supported on all elements starting from version 4.3. Before that they could only be applied to <button> and <img> tags and some <input> types (according to the documentation).

So perhaps the safest way to really make it work on all BlackBerry firmware versions is to use an image for the warning, and use CSS to set its width and height to zero.

If an image is not an option (due to lozalization issues or so, perhaps), an ugly hack might be to specify an empty/illegal image source and put the warning text in the alt attribute. I don't know if setting its width and height to zero would still hide that alt text then.

link|flag
vote up 0 vote down

What exactly is wrong with (the earlier mentioned)

width: 0 height:0 visibility: hidden

link|flag
vote up 0 vote down

width: 0 height:0 visibility: hidden

...Does not always work with firmware 2.2 and older. Sometimes you can get an element to be hidden, but it will reappear with certain keystrokes (like underscore, for instance).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.