lucas572
-
CSS brainteaser: How would you code this?
I think for maximum browser compatibility an image is the only way to do. While I don't doubt there is an elegant CSS solution, for this to work in an older version of IE, I think an image is a must.
-
CSS brainteaser: How would you code this?
@CrocoDillion I'm so impressed by that code still! For images, would you suggest a bg image in a pseudo element for each colour? Or literally one bg image with the arch's in it? I think trying to make this page work with a % based grid i…
-
CSS brainteaser: How would you code this?
Yea, unfortunately this will be a responsive site, but I'm thinking of deffing off the funky design and just having three block colour sections instead. @CrocoDillion, very impressive code there! I'll have to have a dig around that and se…
-
Using indesign for website layouts
Kind of an aside, but you can get Plug-ins for InDesign that let you make iPad apps! They're aimed at non-techies though (no coding needed), but it's interesting how they're trying to move a print based program to work with the screen…
-
New website - feedback please!
Nice :) One thing I would say though, on mobile it would be a bit annoying if on every page I was greeted with the Book Now form instead of the content of the page. Maybe have the content then the call to action? Or perhaps have a Book Now button t…
-
CakePHP, opinions?
I'm not confidently saying anything in this post :) I am yet to dev in WordPress for this project, I'm just thinking through my options before I start coding, I don't want to spend hours hacking WP to find I hit a wall, when I could h…
-
Critique of web-app
Oh thanks! I was thinking it would be a right pain to fix (Y)
-
Critique of web-app
@ChrisP or on any version of FF as far as I can see. Because the site is an add-on domain to my hosting pack, FF doesn't like it when the link to fonts have a different domain name. I need to try and find a way around this, but no idea how with…
-
Critique of web-app
@JoshBlackwood: Yea, I'm not sure why that shows up, I think it's because I stopped the page reload on submit, and the trigger for that alert might happen after the information on the text-box has been removed by the app. I'm not 100%…
-
Feedback on my website?
Love it! That hover effect on your name is a very nice touch too. I'm not too keen on the left-margin difference between your logo and the "hello everyone" section, I'd line those two things up personally. Apart from that, love…
-
Critique of web-app
Yea, that is a bug I'm aware of (see note at end of 1st post), I'm trying to figure out why it does that, not getting very far though lol)
-
Critique of web-app
@tomrogers123: Thanks for the kind words. I know what you mean about the entrance screen, lately I've been a bit annoyed at having to 'click' every time I go to add something/check something off. One of the features I want to add is …
-
Best website to learn web design and web coding
What are you looking to learn? I don't think you need to pay for a service to learn things like HTML, CSS, JavaScript/jQuery, WordPress theming/plug-in's, it's all about finding the right websites/videos that can teach you the things …
-
Best way to track & store checked status of multiple checkboxes
Mini update: I was being a bit of an idiot. Managed to get the HTML from inner and outerHTML. Now just need to get this checked status in place and should be golden :)
-
Best way to track & store checked status of multiple checkboxes
Hmm, I have the tr element after an onClick I put in the tr. But I can't seem to get anything other than "[object HTMLTableRowElement]", It wont give me the value or the code of the object itself, only seems to tell me what it is :/
-
Best way to track & store checked status of multiple checkboxes
I was thinking that, instead of pulling the cookie down and trying to edit that, just get all the code from the row and save over the cookie that's already there. Might be a better way to go with less code too maybe.
-
Best way to track & store checked status of multiple checkboxes
@Atelierbram Thanks, That pseudo class has come in handy before, however this is more about changing one part of a JavaScript variable instead of styling something differently. Thanks for the links though! :)
-
Best way to track & store checked status of multiple checkboxes
haha, I'm working on exactly that idea right now! Great minds! In a bit of a pickle with it though! I've managed to get it so when a checkbox is checked, it pulls down the cookie for that particular item. But now I need to find just the i…
-
To-do-list Site issues
NICE! Works perfectly! You f*cking genius!
-
To-do-list Site issues
Hmm, it is strange, because there's no page reloading, and the innerHTML only adds a new table row, and so shouldn't effect the previous rows, but somehow does :S I'll have a dig through stack overflow in the morning, see if anyone…
-
Problem with Hover...
You would need some form of JavaScript or jQuery to keep it open after hover. The idea of it would be to make a class called active and add that class to your div when someone hovers over the FB link. Here's some jQuery I wrote for a slider th…
-
To-do-list Site issues
Side note: I probably will go through this again in jQuery after I finish uni, a chance to learn JS's sister language I guess :)
-
To-do-list Site issues
Yep, I would have to agree with you jQuery would be the way to go! Sadly, this is for a University project and the brief demands JavaScript unfortunately. But, I think I'm almost there now! The Incremental idea worked like a charm, now all the…
-
To-do-list Site issues
Ah okay, I think we're on the same page now! I have the same as you explained, with new items coming in checked. If you add more than one item though, there is still the issue of all checkboxes controlling just one checkbox. Was this the case…
-
To-do-list Site issues
Aaaaah, can't believe I didn't know about this sibling selector! Amazing. Not sure if I'm missing something here, but the input you've quoted still uses an ID? When I use that code above within the todoUserList variable with the…
-
To-do-list Site issues
The ID would be in the HTML on its own, to connect the Label to the checkbox you're hiding. So the HTML would be Label text if needed so that you can use the + label bit of CSS. Or am I completely wrong?
-
To-do-list Site issues
Thanks! Will take a look at the jQuery .on() handler :) Yea, I did originally use a slightly different checkbox hack, but as I say they all require a label connected to the input with an ID, which will only work for the first to-do, because it'…
-
Anchor not working
Well, when you try to submit it with nothing, it gives you this link: http://www.articulate.uk.com/temp/index.php#contactAnchor&panel1-1&panel2-1 Which keeps the contact page as you'd expect. So maybe try #contactAnchor&panel1-1 or…
-
centering divs horizontally on mobile devices
For mobile devices, I tend to set divs to width 90% / 95% and then margin: 0 auto; them. But yea, don't forget the meta viewport which will sort everything out for you :)