DustinWoods
-
Full height sidebar
The CSS property you're looking for is position: fixed
-
Multiple keydown events fire while holding down key too long (Please help)
I actually just put the two scripts together, and had no issues. Haha.
-
Multiple keydown events fire while holding down key too long (Please help)
I couldn't simulate the issue you were having. But I have a hunch what was causing it. I updated the code, try this. Does that fix it?
-
Internet explorer bug
There are IE Mobile condition comments, are you using those? I don't know much about IE Mobile, but perhaps it ignores the standard IE conditional comments. I'm not sure.
-
Multiple keydown events fire while holding down key too long (Please help)
Check this out. I combined both scripts. I think that should work for you.
-
jQuery animation flickers during scroll (Please Help)
@NSR, Yep! You got it! That should work.
-
CSS Roadblocks with WP Genesis Child-Theme Creation
I can help you with your third issue. Your footer ul width is being set to 550px, and centered. And the links inside are floating to the left. I would recommend have the ul and li elements be inline, and have the text-align set to center. I changed …
-
IE8 and 9 doesn't see my background image...
In your #container code, you have a syntax error. IE doesn't like it much. You need a space before "no-repeat." Like this: background: url(images/bg_body.png) no-repeat;
-
IE9 top-margin & spacing issue
It looks like the "Typekit" font you're has a bug with IE 9. I'd recommend using @font-face instead. If you can't use a different font, you could use an IE 9 conditional comment to insert a style that gives it some extra mar…
-
jQuery animation flickers during scroll (Please Help)
Add this: return false; to the last line of scrollThis(). When you use mousewheel, you need to return false if you don't want the user's action to actually move the scrollbar. What's happening in your code, is when the user scroll…
-
Can't get Css Menu effect on hover
Try this: nav ul li a:hover{ background-color: #55a1ba; /*Fallback for older browsers*/ background-color: rgba(85, 161, 186, 0.9); }
-
Positioning problems
Are you trying to center the login form? Try text-align: center; instead of content-align.
-
Size and different content in circle
Check out this example I made. Try playing with the size of the window, notice the circle is fluid, and does not become an oval. Looking at your code, it looks like you're trying the same approch I took. You're setting border radius to ha…
-
CSS for styling form input on iPad/iPods/iPhones
Add this: -webkit-appearance: none; Edit: And just to be safe, you could also add: -moz-appearance: none; appearance: none; This disables browsers from using their native appearance for elements such as input fields.
-
Security issues in a Wordpress Plugin
I've never seen someone so heated about this. Hahaha. You seem very passionate about ethics of free software. I'm glad to see someone voicing their opinion about it though. I'm very surprised it got a 4.5/5 star rating. You would thin…
-
Using SSH to install Dropbox
What exactly is the python script for? From what I read, it sounds like it just provides command-line support for managing Dropbox. Isn't there a GUI?
-
Can't Get CSS Perspective To Work
Does this example work on your browsers?
-
IE 6 7 8 issues with stylesheet
@Eric, thanks for sharing! I love your use of PHP in method #6.
-
IE 6 7 8 issues with stylesheet
I don't know if this helps or not, but if you are trying to exclude your regular stylesheet for IE browsers, you can try this: ` `
-
Centering Multiple BG Images
Your #main-top background is centering, but the div itself is not centered inside #container. Using margin: 0 auto; should work fine for centering the div. Edit: An alternative (if you don't want to use margin), you could set #main-top width t…
-
Using SSH to install Dropbox
I think if you head over to the website they should have instructions somewhere. Wow, you've had a lot of hoops to jump through!
-
Using SSH to install Dropbox
Hmm, the line of code is just supposed to create a symlink for Dropbox. When you access Dropbox, do you see the kirby folder?
-
How to change a class positioning via jquery
Do you wanna post your updated codepen?
-
Using SSH to install Dropbox
Are you talking about this part: ln -s /var/www/mykirbysite.com/content ~/Dropbox/mykirbysite?
-
How to change a class positioning via jquery
I think you may have added the code I gave you to the end of your stylesheet. What I meant was delete padding: 50px; from your h1 class. Then add article { padding: 50px; }. Does that help? Edit: Did you look at the changes I made ?
-
Using SSH to install Dropbox
Haha, that always gets me too
-
How to change a class positioning via jquery
Have you tried this? h1 { font-size: 2em; text-align: center; } article { padding: 50px; }
-
Foreign characters in background image. How to!?
Can you rename the image?
-
Using SSH to install Dropbox
Oh perfect! Dropbox says you have to visit the link to set up a Dropbox account. Then you should be good to go.
-
How to change a class positioning via jquery
Like This? Instead of giving h1 the 50px padding, I recommend giving the article element the padding.