Everything posted by brown2005
-
webdesignerforum.co.uk
Hi, I just wanted to know, where the design for this website came from?
-
PHP Problem
you use location when you use headers header('location: http://www.gotothisurl.co.uk'); which will send you to a new page.. with include, just do include('file_to_include.php'); or include 'http://www.example.com/file.php; for a full path
-
what happened
hahaha thats awesome. facebook status or what
-
What DOCTYPE to use if using HTML/CSS codes and want to make tables?
are you laying out the website with tables? you shouldnt.
-
Peterborough Webdesigners?
lmao. seriously some people need to get out more. lol
-
www.colouremotions.com
on the end of the test bit, thank you, your votes have been saved the text is very hard to read.
-
Hello from a white-haired designer!
The best way to do this, would be create a index.php with a mysql database which has all the photos listed and keywords for each photo. Then on the index.php page you can have a search box to search for keywords, say a little slideshow of say 10 random pics, then underneath all the keywords in alphabetical order.
-
Redesigning site with amazing SEO
I think the site looks fine as it it.
-
Help with form layout (usability)
thats what that css was for... <input type="text" name="firstname" class="required" /> <input type="text" name="lastname" class="required" /> <input type="text" name="passport" /> then the ones will with required will be red and needed and ones not will not... if you dont want to do that way and want to break it up... just have two links at the bottom.... <a href="">Skip and complete later</a> <a href="">Enter information</a>
-
Looking for feedback on my first project..
Hi, Looks good for a first project. 1) I would make the whole site line up properly. 2) Get in touch should be aligned to the right with the telephone number 3) In this section part would look better boxed up and sperated from the main content.
-
Help with form layout (usability)
simple. style all required information boxes input.required { border:1px solid red; } little message at top all information in red is required. or something like that
-
A few amateur questions, advice?
instead of <center> you should use body{ text-align: center; } #container { width:700px; margin:0 auto; text-align:left; } also with the navbar try #navbar{ background-image:url(../images/Navbar.png); text-align:center; height:26px; line-height:26px; width:735px; }
-
Form does not tab to each field
add <input type="" tabindex="" /> to your inputs and order them
-
Feedback for Restaurant Website
very nice as stated above consider placing contact details and important information in a footer at the bottom of the homepage.
-
Don't hurt me too much :(
I would suggest the following: Footer content needs to be a darker color. A lot of people may find it hard to read. The slider text is too squashed together. Consider spacing the lines out a bit. Latest news would look better in like a box to seperate it from other content.
-
how to make the text not copyable ?
or simply disable scripts.
-
how to make the text not copyable ?
Put the following script in the head of your page: <script language="Javascript1.2"> // Set the message for the alert box am = "This function is disabled!"; // do not edit below this line // =========================== bV = parseInt(navigator.appVersion) bNS = navigator.appName=="Netscape" bIE = navigator.appName=="Microsoft Internet Explorer" function nrc(e) { if (bNS && e.which > 1){ alert(am) return false } else if (bIE && (event.button >1)) { alert(am) return false; } } document.onmousedown = nrc; if (document.layers) window.captureEvents(Event.MOUSEDOWN); if (bNS && bV<5) window.onmousedown = nrc; </script>
-
Gradient, then image repeat.
right in css you need: html, body { height:100%; } div #slice{ background: url(bgrepeat.png) repeat-y; width: 1098px; height: 100%; margin: 0 auto; } then <div id="slice"> <div id="colourWrapper"> in your html
-
Gradient, then image repeat.
can you attach the slice image please
-
Gradient, then image repeat.
so you want the topbg to stretch the whole way down the page?
-
Gradient, then image repeat.
http://www.tankedup-imaging.com/css_dev/css-gradient.html#cs have a read there mate
-
Is it legal to copy another website's idea?
http://www.ipo.gov.uk/
-
Is it legal to copy another website's idea?
it depends if they have trademarked/copyright the idea or not.
-
how to make the spacing between 2 sentences smaller?
p{margin:0;padding:0;} try that see if that works
-
Feedback on my site please?
I think the overall design of the site is nice and clean and to the point.