Senff
-
Good or bad practice to hide elements with CSS, as opposed to doing it with jQuery...
I believe the answer to your original question is that there's not really a problem with hiding elements with CSS before you do a jQuery action on them. But keep in mind that sometimes, when an element has property display:none, jQuery won'…
-
Need help with layout
u hav used all images in ur page which hav dimensions in pixels. and scrolling is off so the images wud go beyond borders if u hav to do wat u r saying then u will hav remove attributes like fixed / absolute positions use % if possible for imag…
-
display after layout
What I usually do, is give the container (the one that has the scrollbar for a second) a fixed width and height and overflow:hidden;. Though to be honest, I feel it's a bit like cleaning up a problem when I'm certain the problem itself can…
-
Sample Button Working in Codepen...but not IRL
On your test page, both buttons look the same to me (Chrome on Mac).
-
Why won't my code
This should get you in the right direction: http://codepen.io/senff/pen/iGylw
-
A Random Saturday CSS Challenge
Make npm logo in CSS only. Only CSS? Or is HTML allowed too.
-
Vendor prefixes, Compass and Codekit [Need help]
Maybe you just forgot a closing bracket somewhere. Can you show us the source file?
-
Need this style in CSS for headings
interviews If you need to be more specific, add something like letter-spacing:-1px or maybe -2px, but you'll need the proper font as well.
-
CSS-Tricks Bug
I had the same issue with my blog, and my custom fonts weren't showing. The cause was that my Wordpress install was not located in the root folder of my site, and the fact that there was a difference between the Wordpress Address (URL) and the …
-
Tiny jquery help
Two things wrong here. First, you didn't have a jQuery library selected (it was set to "No-library"). Second, remove the curly brackets around the part where you set the color. Result: http://jsfiddle.net/senff/Lhkn6/7/ Edit: ....and…
-
Content cut off in IE10
It's probably because there is a P tag that is not closed: I dag tænkte jeg, at ti ..... So basically you have P within a P...which is not OK.
-
Testing local server with MAMP/wordpress on external device?
You could try using tools such as https://forwardhq.com/ or http://progrium.com/localtunnel/
-
font, color etc not working in IE8
Which one of these did you use? about_text.headline about_text .headline .about_text.headline .about_text .headline #about_text.headline #about_text .headline Asking because what you have up there is not right (no period or #…
-
Extending an absolutely positioned div to content height
With some jQuery: http://codepen.io/senff/pen/xCBsn
-
Problems with my website
Start by adding a doctype at the top of your files, that might fix a whole lot of issues in IE.
-
IE Issues with Drop Down & Form Select List
Please give it a try. Download the tutorial files, add a simple form Select box / list with some values and try it in IE 10. I believe you will have more luck if you create a pen on Codepen.io so that people can check it and fiddle around with …
-
For Some Reason Float Image Not Working??
Yep. That makes total sense.
-
How to add current class in tabs on the same page?
Using jQuery: $('.mstoic_tabs li').click(function(){ $('.mstoic_tabs li').removeClass(); $(this).addClass('current'); }); http://codepen.io/senff/pen/tgEpn
-
For Some Reason Float Image Not Working??
I would rephrase to: YOU CAN'T USE AN LI WITHOUT A UL OR AN OL AROUND IT @mwbcomputers, take note of that.
-
For Some Reason Float Image Not Working??
You're having some listitems (LI's) that are not wrapped in a UL. LI's should ALWAYS be nested in a UL or OL. http://codepen.io/senff/pen/BbviL YOU CAN'T USE AN LI WITHOUT A UL AROUND IT Yes you can. OL work too. :)
-
Best way to tackle this
You mean the squares being irregular in size? That looks like a mistake on the graphic designer's part. Doesn't seem like a mistake, I think it's just to make things more natural. I would just use an image that's already ro…
-
IE8 displays website partially.
Remove the 250px height of .promoContainer.
-
background music
There are plenty of audio players for your web site out there: http://bit.ly/nWuQfp But for heaven's sake, do not use any autoplay option.
-
Which one do you suggest and why? (PHP Book)
Head First. Cause it's awesome.
-
Button type image doesn't change size.
You could try adding: background-size:100% 100%;
-
Background overflowed..........plz help
@kazitouhid what do you WANT it to do when the items don't all fit on screen? Should they wrap below, should the items be smaller, etc.?
-
Loading image wont display on some pages
It also worked for me on the ABOUT page. Isn't it just a "problem" that the "Loading" image is just not shown because the page loads (too) fast? Keep in mind that the image itself also needs time to load, so if it's st…
-
Loading image wont display on some pages
Sorry, but can't help unless we see the pages in question.
-
Loading image wont display on some pages
I know that, but the part of your code above only relates to HIDING the spinner after everything has finished loading. It has nothing to do with the way the spinner is being shown in the first place, so it's impossible for us to tell why it doe…