-
Posts
5,717 -
Joined
-
Last visited
-
Days Won
6
Everything posted by Adam
-
From a usage point of view, the 'do you want to register now?' pop up is annoying. Once I don't mind, but it's popping up all the time. Whilst searching for a room it pops up every time I go to a new search results page, and for some reason clicking a page number instead of 'next' brings it up, without loading the page...
-
I'm not massively keen. The colours are nice but the kind of bubble look really lets it down. Also the nav is way too small compared to everything else and shouldn't really be touching the big gallery thing below it...
-
I have a full time job so I don't depend upon the money brought in from freelancing work, so I enjoy the work a lot more. I don't make a massive amount of it right now to be honest but it's good experience in other areas, such as working to dead lines, building client relations, etc. And obviously it's something for the portfolio... I definitely find it worth while. Adam
-
I'm not overly keen - too many different patterns used! Especially the header in comparison with the main background, don't fit well together at all! The keyword stuffing at the bottom isn't very good either. Apart from that, not really a great deal to say - it's a forum. -Adam
-
Does look much better! It looks slightly odd though... there's layers in the logo then suddeny the nav is really flat. Perhaps if you could carry the pattern from the logo on into the nav, but perhaps using a contrasting colour or something? Or adding a more layered look to the nav... If you get me? -Adam
-
I would have thought they'd have to have declared that they can do that in the original licencse? Which I doubt they did...
-
Try the freelance board... -Adam
-
Hah .. grim news for MySQL i suspect!
-
It's okay, doesn't really catch my eye though... Certainly doesn't remind me of chess either. The color scheme is pretty decent though the default blue links don't particularly fit in my opinion. Your footer seems a little off center. There's no logo? Overall it's okay, just needs a bit of work. -Adam
-
Quite often can be kind of 'virtual' sub domains, I believe. -Adam
-
I'm getting a 404!
-
It says it in the bottom corner, "Discuz", but website's chinese (I think).. http://www.discuz.net/
-
Sorry I've just tested it and it doesn't work. Says execCommand isn't a function ???
-
Not tested but you could try this, or something similar.. In the head: <script type="text/javascript"> function copyID(obj) { var id = obj.innerHTML; id.execCommand('Copy'); return true; } </script> ... and in the body: <a href="webform.com" onclick="copyID(this);">ID: 12345</a> As I said not tested! Adam!
-
Flip the page? Be best off using a JS framework like jQuery .. will make animation and such a lot simpler for you. Adam!
-
At the minute you can delete the cookies and upload again...
-
Do you mean when they select the room, you want the data to display instantly? Or to just submit the form without having to press submit? Solution to the latter is to just add: onchange="document.form_name.submit();" ... to your select element. Adam!
-
Risky? Not really, if you know what you're doing and secure your system... SMARTY templates allow you to add in multi-lingual support, not by default but there are classes available you can add to give that support. We use it at work and our website is available in about 10 languages, I have no complaints. Generally the idea is in your templates you encase text in translation tags, something like {t}hello{/t}, and then the translations are looked up from an XML file or ".po" file. Definitely beats having several versions of the same file... Regards
-
You'd want to use a 'factory' pattern.. http://uk3.php.net/manual/en/language.oop5.patterns.php Regards
-
What is the best SEO tactics for the subpages of the site?
Adam replied to qaokpl's topic in Miscellaneous
Ha.. 20? That's not large! It's always an advantage if you can use different keywords and descriptions for each page, but obviously sometimes that's just not feasible. I think the best thing you can do is read through an article so you properly understand how to use the title and META tags... First result on google! I actually had a quick skim through and it should answer all of your questions. Regards -
Layer 1? As in, the pop up wrapper div? Looks like the actual pop up HTML is just within the <body>, hidden with "display:none;". So whatever ID you use when calling the pop up - e.g. showPopup('mypopup'); - then you'd just use: var layer1 = document.getElementById('mypopup'); // 'layer1.innerHTML' would now contain the content! Is this what you were looking for? Regards
-
I'm guessing you want this to happen without submitting any forms or anything then? So like when the user clicks the check box, it's automatically added to the shopping cart without refreshing the page or submitting a form? Regards NB This is the PHP board, not JS!
-
The login & registration forms still don't support pressing 'enter' to submit! "527 is the difference Garry (offline)" ... Eh? Everything's still way too slow, especially posting messages and the "Loading Shoutbox.." screen. By the way do you keep deleting users from the database? I've had to register every time I've visited it - a "remember me" function would be nice as well... Adam!
-
[SOLVED] Limit text in an area, and click button to view all?
Adam replied to Jason28's topic in Javascript Help
Just to add... You don't need to add a # to your URL to escape this. There's several ways... You can call the JavaScript from the 'href': <a href="javascript:showHide(1);" id="display_1"> But that displays the JavaScript in the status bar and some people don't like that. You could have the 'onclick' event return false, which would stop the browser loading whatever is in the 'href': <a href="#" onclick="showHide(1); return:false;" id="display_1"> Or you could use void(0); instead of #... <a href="javascript:void(0);" onclick="showHide(1);" id="display_1"> Adam! -
There's nothing wrong with that code. Perhaps the problem lies with the context is used in? Or maybe there's a problem with the rest of your JavaScript. Do you have a link? Adam!