Everything posted by TheSimpleHost-Nathan
-
Portfolio Site Feedback
Not a fan of the menu on the left, the styling (mainly the shadow) feels a bit off.
-
reset a session?
For future reference you cannot change the page location if there has already been any output to the browser. That includes white space.
-
Please review my website
I'd probably have the top right image (24 hour emer... etc) in text (for SEO) and also add the phone number there (again, in text so people can select it). I also agree with mantis about the logo - but if that's their logo there isn't much you can do about it
-
How is this done.
I see no link
-
Google Images OK for design situation?
Take a read of: http://www.webdesignerforum.co.uk/topic/59846-getty-demand-letter/page__pid__381010#entry381010
-
Character Illustration...
That's a shame I like him, but yes - he wasn't quite in keeping with the general theme.
-
getty demand letter
As long as you can back this up in court I wouldn't worry about it IMO - but I would possibly consult a solicitor regardless.
-
Display Text Only If Field Is Populated
There's no need to call the function twice (it's just a waste!) - do something like: <?php if(($meta = get_post_meta($post->ID, 'fieldname', true)) != ""){ echo "<p><strong>Label:</strong> ". $meta ."</p>\n"; } ?>
-
News page for my site
Just install a blog (wordpress) - that'd be the easiest way IMO and sounds like exactly the sort of content made for a blog. You can also tie the wordpress installation into twitter and fb so it posts all new posts to your fb/twitter.
-
Traits of a good logo
I wouldn't agree. Look at the logos of top companies over the years. Microsoft have changed fairly often (ish), Apple etc.
-
PHP Form Checkbox Mail
Change $Regions = $Regions . "\n"; to $Body .= $Regions . "\n"; and remove $Body .= $Regions;
-
Website Browser Problem
OK I stand corrected.
-
Thoughts on my new logo plaything...
I still prefer the second rev. (black on white with hollow headphones).
-
Website Browser Problem
Link? IE is known to be problematic so you just have to hack your way around it. But yeah, a link would be a good start.
-
How do you structure a job?
That's fine then, but when you start getting remote clients you need to ensure you can guide them. You could even get yourself a small web hosting reseller account and charge the client directly, that way you should be able to get your account paid for by the client(s) and make a little bit more money per client (plus its recurring!).
-
Thoughts on my new logo plaything...
I much prefer the white.
-
PHP Form Checkbox Mail
No, the code I posted should go in the process.php file.
-
PHP Form Checkbox Mail
Whoops. That's what I get for C&Ping - cheers.
-
iPad Apps. What's ur favourite?
It's a bit lame, but I'm in addicted to harbor master ATM. Apart from that, the standard social networking tools (fb, twitter). I also love using Mercury, its an alternative web browser and it just works better IMO.
-
What does the term 'Web Design' mean to you?
IMO web design is purely the graphical interface that a website has - none of the backend work would be carried out by a web designer. Now web developer is a worse term to define - I mean, you can develop HTML right..
-
Need A Static IP Solution
Good tips WebDesignBournemouth. Additional: depending on ISP you could purchase a dedicated IP (they obviously charge for this).
-
Web Development Software
When developing I use a combination of Github (for source tracking), vim & netbeans.
-
Hello All
Hello all! Looking forward to being part of your community
-
Simplistic Design - Did I butcher it?
I think a lighter colour for the dashed lines would look a bit better IMO.
-
PHP Form Checkbox Mail
$_POST['Regions'] will contain an array of selected values. If you do this it should give you a better idea of what's going on: foreach($_POST['Regions'] as $region){ echo $regions; }