Tagged Questions
0
votes
0answers
9 views
Auto-Align Script misaligns on page load but not on refresh?
Hi please take a look at my site, the code snippet in question i have to center my images since ive never had any luck with the css-html methods. Sometimes it will load centered and sometimes it wont, ...
-4
votes
0answers
20 views
unable to scroll in Internet explorer
I have a scrolling bar issue in IE.In other browsers it works fine. The scroll bar appears and I can drag it but it goes to top immediately.But it works fine if I reload the page even without clearing ...
1
vote
5answers
40 views
how to calculate the height of a div with some text inside and a fixed width
I have the following code:
<div class="content">
<a href="/profile/Nat's Rare & Raw" class="link-name"><strong>Irene Natalia</strong></a>
...
0
votes
3answers
37 views
Show image in a div tag with it's real size using jquery/css/html
I'm working on an asp.net mvc3 application. My views use razor but I think this doesn't matter now. I needed an image gallery where you can delete and upload image and some other demands which I ...
0
votes
0answers
17 views
Internet explorer compatibility with versions on my site
I recently found out about a program, IETester, to test my website http://www.gfcf14greendream.com/ on the different versions of internet explorer. While on chrome and firefox, my site looks like ...
0
votes
0answers
11 views
Addthis Twitter Follow Button Customize
I'm currently using Addthis for my social media share / follow buttons, the problem I'm facing is on the twitter follow button I don't want it to display the username (so the button isn't so wide) I ...
0
votes
1answer
40 views
change table cell background-color, when radiobutton is checked
I have a matrix of radiobuttons in a table
<table class="example_table">
<colgroup></colgroup>
<colgroup></colgroup>
<colgroup></colgroup>
...
2
votes
1answer
32 views
How to grab the surrounding td elements?
Ok so i have this html structure jsfiddle and what I want do is grab all 8 surrounding tds when one is clicked.
So for example if the user clicks on #c3 then I want an array of the ['b2', 'b3', ...
0
votes
3answers
22 views
Controlling when font face downloads the font
From my understanding font-face downloads the font straight away and then whenever you use the font it just applies it. My "issue" is that most computers have Century Gothic installed, so I don't want ...
0
votes
0answers
39 views
Using jQuery .stop() To Stop Only the .fadeTo() Effect
I have two jQuery effects going on with a <div> on my web page. I use animate() to move it right and left, and I use fadeTo() to fade it out when the mouse is not over the <div>.
I'd like ...
1
vote
0answers
24 views
How to prevent div from scrolling out of page
I have a div whose height is 500px. When I scroll the page down, I would like the div to move as the page scrolls, but I would like it to stop scrolling with the page after the 250px of the div are ...
0
votes
3answers
28 views
Fading a <div> With 'onmouseover' and 'onmouseout' Happens Several Times
I have a <div> on my web page that I would like to have an opacity of 1 while you're hovering over it, but when the mouse is not hovering over it I would like it to fade to an opacity of 0.3. My ...
0
votes
3answers
46 views
Modify CSS file using Math.Random();
I am trying to have a background image changed using
Math.floor((Math.random());
One of the line in my CSS file which is called within my HTML file is:
.slider { width: 990px; height: 378px; ...
2
votes
4answers
58 views
Show/hide multiple elements with JQUERY/HTML when hovering
This is what I have so far:
<div style="position: relative;"> <a href="#games">
<div class="sidenavOff">
<img src = "images/card_normal.png" />
<img src = ...
1
vote
6answers
40 views
How to display text over a faded image on hover using jquery
I have a picturelink that fades opacity on hover. What I need is for text to be displayed over it. Here is an example of what I want:
http://kspla.tumblr.com/
My code below fades the opacity to 40% ...