AndyHowells
-
Trying to Code Mega Drop Down Menu
Fixed: http://codepen.io/seraphzz/pen/jgKBz
-
Trying to Code Mega Drop Down Menu
The issue you've got is that it needs to be joined properly, so when you cease hovering the initial element and slide over the dropdown there is no gap inbetween. Is there a reason you're not using UL's and LI's?
-
how to do a opened menu?
@myourvexel i need a ready code and not "16 pages of explanations". If you don't want to learn something or you don't value the opinions and knowledge of the people here, then I'm not interested in helping you. Go away.
-
Jquery click CSS problem...in Chrome only?
Why not; $('.buried').on('click', function() { $(this).removeClass('buried'); } Or Zoidberg.
-
Display Text in a Div on Mouseover
Using JQ - http://codepen.io/andyunleashed/pen/etczA Actually @hugogiraudel's is much better.
-
Display Text in a Div on Mouseover
Yup it's possible, though the text wouldn't be easily editable if this is to run via a CMS, you'd have to change the text in the CSS stylesheet instead. http://codepen.io/andyunleashed/pen/yGdDi
-
Display Text in a Div on Mouseover
Can possibly do it without JS. Will create a codepen.
-
Styling textarea scrollbar
@chriscoyier did an article on custom scroll bars previously - http://css-tricks.com/custom-scrollbars-in-webkit/ Edit: @paulie_d beat me too it! With regard to changing the direction I'm unsure if it's possible but even if it is it migh…
-
How to make drop up menu for compatible all browser?
http://whathaveyoutriedsofar.com http://css-tricks.com/how-to-ask-a-good-question-in-the-forums/
-
convert XHTML 1.0 Transitional to HTML5 and CSS3
http://whathaveyoutriedsofar.com Also I googled your website and it appears to be built in Flash, so you'd basically need to rebuild the entire thing from scratch in HTML5 & CSS3. That's not what we're here for unless you want t…
-
Help in choosing a computer
What @joshuanhibbert said - this is what I had done instead of buying the iMac. I should have gone for a hardcore Macbook Pro and bought a sweet monitor, still would have been around the same price but portable too.
-
SVG + CSS Issues
What are you putting as the URL to the image? We need the code.
-
How to make a website do the harlem shake.
I made this video a few days ago! http://codeboxers.com/download-folder/kitten-shake.mp4 I love the kitten on the right who doesn't shake, he's just sat there thinking "deal with it".
-
Is there any good tutorials of SASS that someone can reference?
By the way SCSS is like version 2 of SASS. They're effectively the same thing but SCSS is the newer of the two, so I'd recommend learning it instead.
-
Help in choosing a computer
@chrisburton - Oh absolutely, I agree it's not intended for hardcore usage, if I was to buy a portable primary machine I'd stump for the Pro, maybe not Retina though. I appreciate that the screen is super high quality but it's a lot o…
-
Help in choosing a computer
I disagree that the MacBook Air is not suitable for daily work. I spend 50% of my time on my Air (the screencasts I do over at Codeboxers.com as well). It can handle photoshop/illustrator and web development with ease. I do have the 13" versi…
-
Helping People complete their education for better lives
You're more restrained that I would be @Paulie_D, I would moderate with an iron fist! Mwuahaha.
-
Best way to use custom fonts?
@websitecodetutorials - Yeah fuck those bloggers with their free knowledge sharing! What egomaniacal pricks, sharing information, giving you explanations, how dare they! /sarcasm
-
Any similar codekit softwear for pc?
Best ones to grab; LiveReload for auto refreshing. Compass App for compiling is good but Scout is an alternative.
-
Learning multiple skill sets at one time
Fake it till you make it. Seriously. The best thing I did when I started Unleash was to literally just say yes to everything. It meant I was constantly challenged and having to learn by doing, nothing motivates more than a deadline! Also, if you w…
-
Learning multiple skill sets at one time
Do you want to be a jack of all trades or a master of one? Personally I have HTML/CSS nailed down tight and my current learning revolves around JavaScript. I have a handle on PHP as much as I need for front end development, but I don't want to…
-
need some critical review
Very slick and clean but it doesn't have much personality. I assume this is a theme for selling though? It comes across like an off the shelf theme.
-
"csstricks like" texteditor
Or even better - make a codepen
-
*:before, *:after { content: ' ' }
You should be concerned, say we have 100 elements on the page. Using the universal select for box-sizing isn't creating anything, it's just adjusting the properties of all elements. So for example, adjusting 100 elements on a page. By ap…
-
*:before, *:after { content: ' ' }
I use before/after from time to time to add custom characters to elements. Usually it will be on a list-item, for example a check mark like below; li:before { content: "✔ "; } 90% of the time I'm using before/after to do stlying …
-
Branching with Tower Gitclient
@mtedwards - It took me a little while to grasp as well, but basically it just uses the existing files, so once you're using a new branch the files just belong to that. You can switch to another branch at any time and the files will change to t…