Skip to main content

All Questions

Tagged with
0 votes
2 answers
32 views

Make img appear next to navbar link on hover

I have these 3 triangles and each one of them is next to a navbar link. I want to be able to hover over the navbar link and make the triangle appear next to it. So far I cannot get it to appear and I ...
RDX10290's user avatar
  • 423
0 votes
2 answers
91 views

Display vs Visibility

In one of my page I can have two situation. The first, in case no event found <div class="mec-wrap mec-skin-list-container" id="mec_skin_1210"> <div class="mec-skin-list-events-...
SirLancillotto's user avatar
1 vote
1 answer
3k views

Visibility hidden does not work on Microsoft Edge with CSS content: url();

See Fiddle : https://jsfiddle.net/8wk0tsnL/8/ The offending part is this (works on FF, Chrome, IE, but not in Edge) : .testclass:after { content: url(http://placekitten.com/96/139); visibility:...
Peter K.'s user avatar
  • 950
0 votes
2 answers
192 views

How can I make this so it becomes visible when hovered over

I'm just trying to make a paragraph that becomes visible when I hover over it. In HTML I just have a paragraph inside the body, and I've also tried it in a div in the body.My code in CSS is just p{ ...
user3161089's user avatar
0 votes
1 answer
634 views

CSS3 parent's visibility: hover transition hides child's visibility:visible transition after a delay

Providing an example jsfiddle below, I want to make a parent div invisible at the same time as a child div visible with a CSS3 hover transition. But when I do this, after the transition is over, the ...
Amy Zee's user avatar
31 votes
2 answers
78k views

Hiding an element: Difference between Javascript attribute and CSS style

I wonder if there is any difference in the result when hiding an element with JavaScript attribute or CSS Style. For example: element.setAttribute("hidden", true); vs element.style.visibility = "...
Jbartmann's user avatar
  • 1,509
3 votes
4 answers
27k views

How to make the text hidden in hover

I am creating a menu that each item has a text and in hover an email replaces. So I do not know how to remove the text in hover. here is my code so far: #home { font: 30px 'LeagueGothicRegular',...
Alex Jj's user avatar
  • 1,383
1 vote
1 answer
973 views

Hide elements in Sencha Touch but preserve CSS spacing

I have a view in Sencha Touch that contains many different labels and buttons. I have styled them in my custom.css file to how I want them to look. I want to hide everything but one button, so that ...
bnrq's user avatar
  • 171
0 votes
2 answers
3k views

javascript - does a click event fire on an element if it's not visible?

If you change the visibility of an element visibility: hidden, will a click event still fire if the user clicks it? I want to "hide" an element (i.e. <span>) and disable the click event from ...
johntrepreneur's user avatar
2 votes
4 answers
3k views

Visibility:Hidden - How to do this in Firefox?

I have been reading these forums for some time, but this is my first question :) The question is related to styling tables. If you look at my page in Chrome, at the bottom left of my table and the ...
user1046246's user avatar
0 votes
3 answers
602 views

How can I change this JS to make it visible?

_createInput: function(){ var self = this; var input = document.createElement("input"); input.setAttribute('type', 'file'); input.setAttribute('name', this._settings....
will's user avatar
  • 1
3 votes
3 answers
6k views

Bug in Chrome or bad CSS? (anchor with visibility hidden)

Test this simple line in any HTML: <a href="anything"><span style="visibility:hidden;">insible text here</span></a> (you can test it directly from here: http://jsfiddle.net/...
Enrique's user avatar
  • 4,793
30 votes
4 answers
156k views

Make one div visible and another invisible

I have two div tags, one is for the search and the other is for the results. What I need is for when the submit button is clicked the results are returned and placed into the results div (with an ...
mattgcon's user avatar
  • 4,818
1 vote
2 answers
1k views

css/javascript visibility visible/hidden is very slow on Blackberry

document.getElementById("spinner2").style.visibility="visible" Visibility visible/hidden is very slow on Blackberry (OS4.6). The screen seems to be redrawing which makes it unusable in Ajax ...
robert's user avatar
  • 625