Reputation Activity
-
Helen got a reaction from Becka in Complete list of shopping cartsCart: Zen Cart
Cost: Free
URL: http://www.zen-cart.com/
-
Helen reacted to webdeveloper93 in smtp authentication for contact formYou will need to use the Mail::Factory method, which is pretty simple to use , u just need your smtp details, i looked up a resource for u that shows u how to use that method Heres the link
-
Helen reacted to oakleaves in Feedback on Biz CardYou're not going to get all bada*s on me again just because I voice an opinion that is contrary to yours?
All any of us can do is voice an opinion. It's up to the op who he decides to listen to. I never have a hissy fit of people choose to ignore my opinion, that's their choice.
If people do not want opinions then they would not ask would they?
I have had to design business cards for a number of different clients and in my experience this design is a fail due to the things I have already mentioned.
Let the OP decide - it's no skin off my nose either way. And just for your information, all critique that I offer on this website is well thought out and carefully worded.
Have a pleasant evening.
S
-
Helen got a reaction from rubots in Best website dimensions?Personally I design for 1000 px. Dunno why...just do
-
Helen got a reaction from WebSetGo in My weigh****chers points calcMust be coz I'm an all powerful Mod! I can say what I like
Tits, bums, arse!
-
Helen reacted to BreakdownDesign.co.uk in How Google Works?Tit
-
Helen reacted to webdeveloper93 in A thank you to all membersWhats with the spamming dude u did it on the other post to catch a clue
-
Helen reacted to KevinW in colour scheme for logoI agree with him. dark grey, not black.
if not: white
btw: the font looks like a microsoft product
-
Helen reacted to Lev in colour scheme for logoWhite and maybe + 10% opacity non-blurred shadow under the logo
-
Helen reacted to heaven smile in colour scheme for logoWhite is good...
-
Helen reacted to Circles in colour scheme for logoWas also going to suggest a dark grey, but failing that, it's white for me too
-
Helen reacted to dap in colour scheme for logowhite
-
Helen reacted to darrenbale in colour scheme for logowhite
-
Helen reacted to andy9l in colour scheme for logoI'd go for a very dark grey - not quite black.
-
Helen reacted to lee grant in colour scheme for logowhite!
-
Helen reacted to NeRo in Got me an iPhone 4Turns out they held it in the wrong place
-
Helen reacted to NeRo in Got me an iPhone 4Two iPhone 4's got married. Ceremony looked great but reception was terrible.
-
Helen reacted to socreative in Flash movie wont play in IEhttp://www.alistapart.com/articles/flashsatay
or use http://code.google.com/p/swfobject/
-
Helen reacted to EpicWebs in Flash movie wont play in IEI can highly recommend Flash Satay as linked above by socreative!
-
Helen reacted to Wickham in Flash movie wont play in IEI can get this code to work in IE provided Adobe Flash Player is installed:-
<object type="application/x-shockwave-flash" style="width: 500px; height: 450px; margin: auto;" id="VideoPlayer" data="yourvideo.swf"> <param name="allowScriptAccess" value="sameDomain" > <param name="movie" value="yourvideo.swf" > <param name="quality" value="high" > <param name="scale" value="noscale" > <param name="bgcolor" value="#ababab" > <p><a href="http://www.adobe.com/go/getflashplayer">Install Adobe Flash For Richer Experience</a></p> </object>
which is similar to your code, but with a few more parameters which shouldn't affect the issue. I have noticed that I have two versions of Adobe Flash Player, one is adobe Flash Player plugin 10 downloaded via Firefox and if downloaded via IE I get Adobe Flash Player 10 ActiveX. I've never understood why this is.
-
Helen reacted to TopShopper in php contact form not workingThe reason is that you were sending it 'from' an email address that was not related to the site you were on. Some email clients will not accept emails where the from address is not the same as the site from which it was sent. That's why some email clients accept it (the less fussy ones) and some reject it.
-
Helen reacted to TopShopper in php contact form not workingFirst, remove the <> from
"From: <$EmailFrom>"
ie.
"From: $EmailFrom"
Next. It is not a good idea to have the email from the person who filled in the form as the email is being sent from your site.
So use this.
$header = "MIME-Version: 1.0\r\n"; $header .= 'Content-type: text/plain; charset=iso-8859-1' . "\r\n"; $header .= "From: ".$FromAddress."\r\n"; $header .= "Reply-To: ".$email."\r\n";
mail($email, $Subject , $Body, $header,'-f'.$FromAddress
-
Helen reacted to TopShopper in Another Site to review.OK, so the only bit that people definitely like, I did not do - that's great [not].
The Logo was designed by:
Helen Guttridge
Web design - Graphic design - Logo design -Illustration - Print
www.helenguttridge.com
Thanks Helen for a great job.
-
Helen reacted to Gopal Juneja in Submit Button Style IssueYou need two images to get the same rounded corner effect for the submit button
1. Left curve
2. Right Curve with maximum width to make it flexible
In HTML code you need to put input tag within span
In CSS
1. You need to make span a block and apply background of left curve, give the height width of the images.
2. give the right curve image as background to input tag remember to put height width and border:none
this will give you the same button style.
-
Helen reacted to Dizi in What Makes a Web Page?This might be an odd question, and don't worry I don't expect you to reply to it, but... doesn't content make a website? Yeah sure HTML sets a structure, CSS makes it pretty and all the other bits and bobs add some functionality to the site, but without content wouldn't a website be just a blank page?