CrocoDillon
-
Master's Degree in Web Development in UK. What Do You Think?
It will start talking about all kinds of stuff like java, fortlan and stuff like that. I want to do an Msc in Computing which basically focuses on deepening one's skill in web development and security. If you want to know what's going…
-
What license do I need for a CSS framework?
I think there are a lot licenses to fit that need, for example MIT.
-
Resources for Learning Canvas
I liked http://www.html5canvastutorials.com/, click Tutorials.
-
Change colour of link
If specificity is the same, the last entry overwrites previous ones ;)
-
Change colour of link
It's because of specificity issues. #navbar ul li a has a specificity of 0.1.0.3 and .currentLink of 0.0.1.0. You can try #navbar .currentLink (specificity 0.1.1.0), but you would avoid things like this by not over-specifying selectors and not …
-
How to make bar chat
You can use CSS3 to make it look better for users that care to upgrade their browsers (like gradients, shadow, will look good with it, will work fine without it) What pixelgrid said. Divs, inline-blocks next to each other, vertical aligned to botto…
-
Toggle using CSS only with Dynamic DIV ID using PHP
I think it's more between 1 and 2% depending on country etc. Percentage of IE7 is lower than that and people still make websites for IE7 (I do, for the fun of it)
-
integrating javascript into html - beginner help
What you're looking for is either AJAX loading your pages (AJAX to load new content) or some kind of tabbed navigation (where all the content is already loaded but hidden using JS) Using jQuery, both are easy enough even without much JS backgr…
-
How big (file wise) should my background image be?
You think almost correctly (PNGGauntlet*)
-
CMS
I don't think you would need years for something small but functional, but it would help if you already know PHP or something.
-
Cannot align menu-div centered
Add padding: 0; to .navigation ul.
-
Cannot align menu-div centered
@Paulie_D, need block too (it's set to inline-block now) .navigation ul { display: block; text-align: center; }
-
Religious Site Design Ideas?
It sais: This Account Has Been Suspended :P
-
nav not full width of parent
As in: #nav { padding: 0; margin: 0; } ?
-
Css3 animation time delayed restarts
Remove and add a class. Easy peasy. Only if you put a delay or something that triggers some magic shizzle in between it :P
-
Css3 animation time delayed restarts
You can probably do that with CSS itself with the animation-delay property (see http://www.css3files.com/animation/), else read this http://www.css3files.com/animation/, but put it in a setTimeout callback instead of an event listener. If you speci…
-
This Type Of CSS Naming Style is Strange
That's another thing I like about Sass, silent comments // types much faster than /* */ and won't be included in production CSS :)
-
@CrocoDillon Website Contact Form
I'd open a new thread for that. I have to go soon and can't go into details. I'm using Zend\Mail (comes with Zend Framework 2 but can be used alone) and it's as simple as: $mail = new Message(); // Zend\Mail\Message $mail-&g…
-
@CrocoDillon Website Contact Form
Here is my question. where does the form data sent to? The same page, I have to find a better solution for that (something that returns JSON with success or failure messages). Now it just waits for any response and assumes success. I will fix t…
-
@CrocoDillon Website Contact Form
In response to what you submitted: Hi back :P Yeah @pixelgrid is right, I created the Pen first to play around with the idea and then used almost the exact same JS live. Just view the source of that page, I kept everything inside the html because i…
-
Button/checker/draught (call it what you will) help, please.
There are websites where you can paste images, like http://snag.gy/ Easier to see what you're after if you do that :)
-
This Type Of CSS Naming Style is Strange
Maybe 'd' from 'disable' or something? I often add an extra character to disable a property for testing, it's much quicker than commenting the whole line out.
-
get variables with mod_rewrite
I don't know much about how .htaccess works with regular expressions but ^([^/]*)(.*) reads to me as 'start of string, capture anything without a slash, capture anything that follows', which are exactly the 2 captures you're gett…
-
IDS and Class
Nice read Hugo :) (especially the conclusion)
-
Need help with Jquery sprite animation
Really? Can't believe I missed that... ah well glad you solved it! :)
-
Need help with Jquery sprite animation
You should check out demo 5 ( link ), and try that instead... except browser support might be bad (though they have demos with transition on opacity too and they seems to work).
-
Solution 1: Fluid Container Height Based on its Background Image Height
I've used something like that to create responsive animated sprites :) http://codepen.io/CrocoDillon/pen/ekuxb
-
Need help with Jquery sprite animation
I'really puzzled... hope some one else tags along. It's not a bug, else it wouldn't be in Chrome, Firefox and Opera (and maybe Internet Explorer if you add the unprefixed transition property). Try to create a simplified nav in CodeP…
-
Need help with Jquery sprite animation
Remove the jQuery part.