Everything posted by jamez141
-
Quoting clients and sending estimates discussion
+1 to pdf. I make it look nice though. Ive been looking at writing a sort of client portal in php where they could log in and check progress or pay etc, but havent got round to it yet!
- BBC Glow
- BBC Glow
-
How do you host clients?
Hi, Just wondering what other designers did about hosting clients. I currently have a shared hosting account and use addon domains in cpanel. What do you do with multiple clients? James.
-
Opinions needed for a site launching on monday.. :)
Yeah, some people struggle to type /forum yep, i agree at the moment. the plan is to have those replaced by pics of the presenters for the shows must admit, i forgot about link colours. thanks all James.
-
Typewriter scroller
Try dynamic drive Clicky James.
-
Opinions needed for a site launching on monday.. :)
Hey all, this is launching on monday. still looks too blue for me. i keep tweaking it let me know what you think http://www.derbyradiostation.co.uk/home Cheers James.
-
Need help in my template design
Ok, I have gone through your code again, and there are some > missing on some of the other tags. mainly on the h1 and h2. I have added float:left; to the css for #Recentworksamples, #verticaldivider, and #clienttestimonials these are now horizontally alligned - although its hard for me to tell because i have no images. see how you get on with that James.
-
Need help in my template design
Also just noticed you've set the same id for each of the images there. an id can only be used once on a page. if you want to apply the same style to multiple objects, you need to use a class instead. <div id="WorkImages"> <img class="WorkImage1" src="imgs/WorkImage1.png" /> <img class="WorkImage1" src="imgs/WorkImage2.png" /> <img class="WorkImage1" src="imgs/WorkImage3.png" /> <img class="WorkImage1" src="imgs/WorkImage4.png" /> </div><!-- End WorkImages--> and the css changes from a # to a . .WorkImage1 { margin:auto 15px 20px auto; }
-
Need help in my template design
Hi, yeah sure sorry, il explain in more detail. to put an image into a html document, you need to use the img tag as you have done. <div id="WorkImages"> <img id="WorkImage1" src="imgs/WorkImage1.png"</img> <img id="WorkImage1" src="imgs/WorkImage2.png"</img> <img id="WorkImage1" src="imgs/WorkImage3.png"</img> <img id="WorkImage1" src="imgs/WorkImage4.png"</img> </div><!-- End WorkImages--> However, you open the img tag correctly " <img " but you never close it. its just left .png". Furthermore, you don't close an img tag like you would a div tag. there's an easier way of doing it. So your code above should look like this.. <div id="WorkImages"> <img id="WorkImage1" src="imgs/WorkImage1.png" /> <img id="WorkImage1" src="imgs/WorkImage2.png" /> <img id="WorkImage1" src="imgs/WorkImage3.png" /> <img id="WorkImage1" src="imgs/WorkImage4.png" /> </div><!-- End WorkImages--> Change that in your code and see what it does to your output. it might fix things, as unclosed tags will cause havoc. let me know if changing this does anything. James.
-
Need help in my template design
Hi, like the design! first off, im pretty sure your img tags won't validate. They need to be like this: <img src="images/myimage.jpg" /> Secondly, I would put the middle divider image in a div of its own, and then float the 3 div's to align them in the tier 2 div. James.
-
SQL injection protection
Thanks everyone. So prepared statements, surely you can still have a sql injection? for say matching a password?
-
SQL injection protection
Hi, Reading up on various sources, i have come up with this script to protect from post variables. Is the around about the correct way of doing this? //post variable protection if (get_magic_quotes_gpc()==1) { //magic quotes is on, so no need to add slashes echo""; } else { //create array to temporarily grab variables $input_arr = array(); //grabs the $_POST variables and adds slashes foreach ($_POST as $key => $input_arr) { $_POST[$key] = mysql_real_escape_string($input_arr); } } Cheers, James.
-
Bingo landing Page
Yeah on first glance I must admit I thought it was a pound sign!
-
Logo feedback plz
Rather than squashing it, make the font smaller and increase the spacing between the characters Maybe play around with different colours for the different parts?
-
Mod Rewrite
Thanks! not sure what i didd differentley but it seems to work now! Another question. This is my code: RewriteRule ^home/([A-Za-z0-9-]+)/([A-Za-z0-9-]+)/([A-Za-z0-9-]+)/([A-Za-z0-9-]+)/?$ /index.php?x=1&$1=$2&$3=$4 How can i make it work if only "home/" is entered or even "home/page/2" ? James.
-
Mod Rewrite
Hi, trying to use this to clean up my url's. But, when viewing the page with the cleaned url, the style sheet doesnt load. So i try "./" in front of the address. nope. i try "/" nope. I have to tell it to go up a "directory" to find the style sheet. Should this be the case? James.
-
Radio Buttons don't work in a Form
Yeah, ok. The page can only send one post value for each "name" of a form. So if you want to do it without a php loop, call each checkbox a different "name" and then alter the email script to show the value of each checkbox. James.
-
Radio Buttons don't work in a Form
If you want radio buttons where only one is selected, change the type value of all the options to "radio" The "checkbox" type is only meant for a yes/no option. That's why the script will only send back one option - because there are multiple checkboxes called the same thing.
-
Big gap under footer?
Hi, I think it's to do with the way you position the header image. Make a new div for the header. don't rely on absolute positioning to put it in the right place. then position all the facebook and twitter links within the header div. the other content should then appear below. James.
-
My Portfolio Website
Oh yeah definetley!
-
Can you please review my site
Hi, please have a glance at the screen shot. Screenshot The red arrows show the gaps i'm referring to. maybe make them the same distance as the green arrow?
-
My Portfolio Website
Hi, I'm not too keep on the little parrot graphic! (on some sort of island??) maybe a clearer hi-res photo is also needed. There's like a clash of themes between a professional simple layout and a comic-styled cartooney layout. If you want to keep the parrot theme, try and incorporate him a little more? maybe add some jungley features if you want to go down that route. Turn the HR's into bamboo and maybe add some trailing tree thingy's down the sides that are static. Just a thought
-
Fundraising one-page website for a charity cycle
Maybe have a bike somewhere? or incorporate some spare bike parts into the design as it wasn't immediately obvious.. James.
-
New portfolio...
Great site, great portfolio. one thing, am I the only one to realise that the screenshots had MSN/hotmail titles?? James.