jamy_za
-
How to add a full width within a fixed div
Yeah, as Hugo said. So the 100% wide element would actually not be a "child" of the "parent". http://jsfiddle.net/ga7cE/2/
-
Text In Columns Bunched Up
http://codepen.io/JamyGolden/pen/xArHG I changed: #two-col and .column
-
How many people in here run Linux?
I ran Photoshop CS3 on WindowsXP performance edition, gave the VM 1.1gb ram off my 4gb ram. That worked for me :p
-
What made jQuery click for you?
http://css-tricks.com/video-screencasts/20-introduction-to-jquery/ http://css-tricks.com/video-screencasts/35-intro-to-jquery-2/ I avoided learning jQuery for a long time until I saw I saw Chris play around with it in those videos. @CrocDillon @Jo…
-
Double Column Not Working?
http://codepen.io/JamyGolden/pen/xkdjF Is that the kind of thing you're looking for?
-
How many people in here run Linux?
Aside from very specific games, I don't think there is a real reason to run Windows as your primary OS. I used Ubutnu for about 2 years without booting into Windows and used Photoshop. How you may ask? No, not wine :p I used to just use a VM fo…
-
Does anyone NOT use a preprocessor?
I don't nest anything besides media queries as can heavily add to the specificity. If you guys haven't already, perhaps you should read (and make use of the methods on a project before making up your mind) an article by Nicolas Gallgher -…
-
Does anyone NOT use a preprocessor?
Yeah, he's a troll guys, just ignore him.
-
How many people in here run Linux?
I run Ubuntu on my home PC. I also use Ubuntu Server while developing - I use Vagrant which runs a VM for my dev environment.
-
FOR loop with counter in variables
I'm guessing you've taken this into consideration, but in case not, traq's PHP example has a stray closing curly bracer.
-
Just a little mistake somewhere.
Something like that? http://codepen.io/JamyGolden/pen/xvzyd
-
Does anyone NOT use a preprocessor?
There's nothing wrong with not using a pre-processor, but it can definitely be useful. I use it primarily for 3 things: 1. Auto-create sprites 2. I work in a pretty modular fashion and have a ton of separate files. I could create a bash script…
-
Any similar codekit softwear for pc?
Check this out: http://alphapixels.com/prepros/ (I haven't used it yet, but looks decent)
-
HTML5 & CSS3 Template Structure
Have a look at the HTML5 Boilerplate, it's a good starting point most of the time.
-
CSS transparent background image hacks for IE6
Have a look at http://www.dillerdesign.com/experiment/DD_belatedPNG/ This may be a silly question to ask, but why are you developing for IE6 when it's pretty much got no browser usage share? http://www.ie6countdown.com/
-
Remove the last border right?
Perhaps you should use :first-child and change border-right to border-left. - This will add IE7 and 8 support. http://css-plus.com/2011/03/prevent-last-child-from-slowing-you-down/
-
Unable to position an element
You shouldn't really position layout with margin left/top. The changes I made are the first 6 lines of css. http://jsfiddle.net/ZFzp7/4/
-
How to set the height of sidebar equal to the height of content in CSS?
http://css-tricks.com/fluid-width-equal-height-columns/
-
Large text files
How large are the text files in total and the images in total?
-
List of Attributes
I find MDN the best HTML/CSS/JS resource in general. I googled mdn link html And the first result was: https://developer.mozilla.org/en/docs/HTML/Element/link That page lists all the required attributes and the reason why they are needed.
-
'DRY' HTML vs OOCSS Approach? Better to have less HTML or CSS code?
I've moved to option 1 and I'm finding it quite a lot easier scale and maintain the sites I build. Nicholas Gallagher covers this with a really great article.
-
Is Chris Coyier Always Busy?
Chris is definitely busy :p as are most people. You could ask on these forums (or a webdev/design community) for someone to be your mentor, but don't expect anything and definitely accept any help you get even if it's in the form of useful…
-
Rotate Order of List Items
Here is an example: http://codepen.io/anon/pen/Gmrlw Note: jQuery has been loaded in the background
-
"window.top.name='opener' " - Explain
window.top === window; // true Keeping that in mind, I did a google search for window.name https://developer.mozilla.org/en-US/docs/DOM/window.name http://en.wikipedia.org/wiki/HTTP_cookie#window.name
-
document.write to a specific id
Try this script instead: function printYTVideo(fileUrl){ var ytDiv = document.getElementById('ytgoeshere'); ytDiv.innerHTML = ''; } Check out innerHTML The jQuery version would be: …
-
Opera on WebKit
IE doesn't and doesn't intend to support WebGL. They claim it's because the WebGL spec includes security holes, however I feel it's it's much more likely that it's a problem with Microsoft implementing a technology that…
-
[UPDATED: First Look] I am building a sass compiler and project manager for windows.
Yeah I wouldn't mind checking it out :p
-
How important is Node.js for a front-end designer?
Node.js is a backend language and is equally as important to a front-end developer as Python/Ruby/PHP. PHP is just the most widely used (based on my experience) and is easiest to get a web page up and running on from "scratch".
-
I have problem of absolute posistions and z-index with IE7
There's a syntax error in your CSS above. You're missing a closing } for #content .item-content header { z-index affects siblings: #content .item-content header and #content .item img aren't siblings therefore your CSS won't aff…
-
Full size gradient IE
Could you also please provide the HTML? Or better yet, create a Pen!