474 Posted Topics
Re: If it's hosted locally, just copy and paste everything into a folder on the site. If there is no index page in the folder then looking at the site in a browser will show a list of all the files. Of course it would be better if they were organised … | |
Re: If you have spoken to the webmaster, why not try something as simple as this: upload the file again. It's possible the file has got corrupted and thus is empty. There is no code when I view source, which suggests the file write failed and left an empty file in … | |
Re: On a usb pen drive, there is a bit of code to make it run as a drive, often pretending to be a CD drive on older ones. That reduces your total available memory a little bit. | |
Re: dump = extract the entire database contents, which you can then use to populate a copy elsewhere, either as a backup, or to work on. | |
Re: You've got some [B]other[/B] problem in your code. cos I've just tested your strong { font-weight:normal; } in IE9 and Firefox, and it works in both of them. | |
Re: This Jquery form is probably more complex than you need, but it does check that all required fields are completed before submission. [url]http://tympanus.net/codrops/2010/06/07/fancy-sliding-form-with-jquery/[/url] I've used this for a large form a client needed This page has several form validation scripts [url]http://zoomzum.com/useful-jquery-form-validation/[/url] and that site has another collection as well [url]http://zoomzum.com/jquery-form-validation-tutorials/[/url] … | |
Re: You are using position:absolute. This almost [B]always[/B] causes big problems. In your the first div I saw in the source code is referenced from the left and the top. The next two divs are referenced from the top and right. So obviously as the viewport is made wider or narrower, … | |
Re: New web sites are thought to start off in the sandbox, then when google has more data it moves you out the sandbox. So if it discovers bad things about the site, it's rating will go down at that point. If it discovers good things (back links, no duplicate content, … | |
Re: To make jQuery plug-ins, first you must learn jQuery itself. Try a web site called google.com, it might help you find tutorials on jQuery (initially avoid the tutorials on editing existing plug-ins, and concentrate on learning jQuery itself, so that you know what to do when you put your ideas … | |
Re: sitepoint.com has many specialist web design books. Ian Lloyds' is one of their top recommendations for beginners. | |
Re: Or use usbwebserver instead. [url]www.usbwebserver.net/[/url] This is a standalone web server for your PC, like Xammp, but with zero configuration. So you can copy the entire folder, server included, from your PC on to a usb drive and give it to him. I do all my PHP/MySQL development using that … | |
Re: This may seem a bit obvious, but ask your web host. Most have a page in your control panel that tells you the exact answer. | |
Re: Set margin:0 and padding:0 on the clearing div. Better still set margin:0 and padding:0 on the body - this reset should be the first line of any css file, to allow for browser defaults differing. Some people use more complex resets but I've never needed to myself. Also check for … | |
Re: This simple tutorial might help you. [url]http://divitodesign.com/css/how-to-dropdown-css-menu/[/url] or this one [url]http://csswizardry.com/2011/02/creating-a-pure-css-dropdown-menu/[/url] google will give you millions of examples to study and work from You don't need to add a class to the sub-ul. At its simplest, you can just copy the entire code from either tutorial, then re-style to suit … | |
Re: What problem??? The divs are clearly assigned the same width in the sample code given. #right{ float: right; border: 1px solid #85004B; [B]width:182px;[/B] } and #right .char{ background:#C9F; [B]width:182px;[/B] } | |
Re: jquery has literally hundreds of gallery scripts. Or you could use google to find pre-built scripts specifically built for galleries, but as an ex-lecturer, I can tell you using a pre-built script will get you a lower grade. You would get a better grade if you wrote your own gallery. | |
Re: You don't need a separate database for each user! You have a table within your database that lists the document owner/user and the filename and path, and anything else relevant to the document if necessary. (Also MySQL CAN store files, images etc, it is just not recommended as good practise … | |
Re: If you visit my [url]www.ukfolkfestivals.co.uk[/url] site, on the country pages you will see some expanding/collapsing divs. You can copy the code (I got it from another site which gave it away free). Look for accordian.js. It uses two divs - accordianButton and accordianContent. It was originally written as a menu … | |
Re: You are using position:absolute; Don't, it usually leads to endless problems. Even if you had a real need to use it, why are you placing things at left 1400px!!! This is right on the edge of the average monitor - how large is your monitor? I work with my browser … | |
Re: Easy solution - drop the table based layout, something from the last century, and go back to using divs like everyone else does. | |
Re: I don't do people's homework for them, but you should read your database theory notes, work out which entities you will need, draw an erd and check everything is normalised. But being a generous person, I'll give you a hint - this is a relatively simple database, and has very … | |
Re: That stands for EVERYTHING. It's a reset to get rid of any different default settings in different browsers, which can differ by a couple of pixies here and there and make your design look different in other browsers. You then have to set every margin and every padding for every … | |
Re: It's a Javascript slide show, and thus doesn't need any extensions or add-ins, as browsers come with Javascript engines built in. So just check under Tools> Options >Content that you haven't disabled Javascript by accident. Formatting your hard drive is always so very destructive and disruptive, and is only recommended … | |
Re: CSS is a set of instructions on how the html should be styled. so with no html, it would be just totally plain text, and thus not stylable. Your friend is just wrong. | |
Re: Nice effect The effect would be even better if the first image in each case was, for example, a black and white version of the revealed image. Several other options are also possible for your initially displayed images (the coloured blocks for those who didn't view the source code) | |
Re: Which version of IE doesn't it work in? It should work in IE9 but not IE8 or earlier, as they don't support border-radius There is an easy solution to getting earlier IEs to do css3, here [url]http://css3pie.com/[/url] . I've tried it and it works very nicely. Just read the documentation. … | |
Re: because the combination containing productid, totalAmountAfter, transactionDate is what the distinct applies to, not just the productID, | |
Re: if an ebook is in html, it's a saved web page. read it using your browser, by double clicking on the file. the text might be from one of those read it online sites that hope you will buy their ebook reader | |
Re: blank spaces in a field name (or any variable in your code really) are just a bad idea, that's all. You get problems when trying to use them in your programming code. Note the use of ' for example, 'around a name' with spaces, to get round this. Names like … | |
Re: The form is a dead lifeless item unless it has an "action", which tells it what to do with the data input - eg add to a database, search a database, or send an email. The action is the name of the script which will process the data. Your form … | |
Re: As far as I remember, in pure relational algebra, you quite simply cannot add an identical item to the set. So the set of colours {red, orange yellow, green, blue} cannot have a second colour red added at all. In databases, you are relying on a primary key to prevent … | |
Re: I think that should be an OR not an AND between the two bracketed conditions. | |
Re: read up on php scripts and the mail() function. Be aware that spammers will try to hi-jack your mail form to send out spam to other people, so you need to check the data input and cleanse it of unacceptable data. | |
Re: Don't think you need the [ ... ] around CreditLimit | |
Re: What a dreadful page - no doctype for a start, so it is designed in quirks mode! then it refers to IE5 and Netscape 4.5, and Flash 5 !!! That page is an antique from a previous century - actually it says 2001, which makes it even worse, as css … | |
Re: [B]OMG!!![/B] It's a miracle anything shows up in a browser! You really, [B]really[/B] need to read up on the absolute basics of html, as your code has some major errors - like no doctype, no html tag, no head tag, no body tag, for starters. And it uses tables (and … | |
Re: If you are new to html and web site building, then I have to say that this is going to be totally beyond your ability. | |
Re: Did you actually upload it to your site? It is not embedded in the page and has to be uploaded separately. Can you give us a live url to look at? Also you don't have a doctype in your code, and that is a very risky way to build your … | |
| |
Re: You need to add a wrapper div around the entire existing content with a defined width which will hold the other divs in place. Otherwise the content in the two divs will do exactly what you are showing when the viewport is less than their combined widths. you can set … | |
![]() | Re: At the start of your css file, i.e. the very first line, set the margin and padding for the body to zero. You should always do this to get rid of browser inconsistencies. But note that it may make a few other parts of your layout look wrong, if you … |
Re: Put it in a div, give the div a width, and centre the div. | |
Re: Code away as normal for css3, then do what it says here [url]http://css3pie.com/[/url] I've just used this on a couple of sites and it works very well. When it goes wrong, the usual solution is to add position:relative to the div in question. Several other css3 bits of code now … | |
Re: Install web developer toolbar (Firefox and Chrome) and ask it to show the passwords, under forms. | |
Re: Does the problem involve more than one centre? Or is it one centre running many courses? If the later, you would not need the centre entity. Do teachers teach at more than one centre? If so, you need a linking table for that. Is a student attending more than one … | |
Re: Have you considered re-inventing the wheel? Perhaps you enjoy a challenge, but the most efficient way to get a forum going is to use some of the existing forum software which has been refined over many years, often by teams of developers. There are free forums, including open source ones, … | |
The End.