OK, I should have been a bit more specific regarding the isset (better to use than empty on its own) and I would normally have a hidden input field in my forms to check that the form has been posted,...
Your confirmRegistration page needs to be a .php, not a .html (unless you are making changes in htaccess) and then at the top of the page you would put something like this (difficult without your...
Please call it JavaScript, not Java - they really are 2 different languages :) Also, using jQuery for your requirements is perfect so do a search and see all the scripts available to you.
As I said before, it is nothing to do with the sidebar, it is to do with the fact that one or more divs before the sidebar have not been closed and looking at your code, it is this div
Have a look in your loop template as what is being displayed is not in this code as it is happening when actual results are found and the layout then is determined by the loop template.
After search you have a div called sidebar-secondary which appears to be inside your content div when it should be outside and looking at the source code I would say it is because you are not closing...
Using javascript to show the larger images is not a problem at all, I have no idea how having images in hidden divs would help. If the problem is only occurring when you add the javascript to the...
1. You are using both inline and external styles so take out the inline as not required (i.e. where you have specified the floats in your image tags)...
Well (if I am understanding what you have posted correctly) it will return both Kebab Houses as one of the search elements is still Fireplace and both have a Fireplace according to what you have...
Add mysql_error to the end of your update queries or run the query (replacing the variables with actual values) in PHPMyAdmin and see if you get an error.
Unfortunately (from trying to do the same thing) you generally have to use javascript (I can't remember what now). However, I suppose if you change your base font size in your media queries then the...
Do you have an index.html or index.php file? If not then you need one as all sites have to have an index file (generally the home page). If the file you have uploaded is something else and you just...
If you have copied the code exactly then I don't know why it isn't working for you as I built the page on my server and it appears exactly as required. There must be something else that is affecting...
The problems you are having are because you are using positioning (absolute and relative) which is totally unnecessary for a simple 3 column layout as you have. I have gone through and cleaned...
Actually, now I look back at your form and email code I can see why you aren't getting any content - you are using variables in the body of your message but not defining them or allocating values...