You have the "nav_bar" floated left. You should wrap the "nav_main2" and "container_2" div's inside another div and have the new wrapper div floated left also. This will make is so you don't have to...
It does help a ton if you use the [ code ] or [ php ] BB tags when you post code. There's some handy icons above where you write your post that can help.
PHP does not work like Javascript. For Javascript as long as the user has the page open you can modify variables. But for PHP once it has run it terminates and to run it again (like for an AJAX...
Been learning to directly manipulate the "matrix3d" css3 property, in particular rotating and translating the matrix. And at first I thought I had my calculations wrong but then I used an online...
By scrolling do you mean move? Scrolling is what you do with scroll bars, if you want the element (in this case an iframe) to be in a different spot, its move.
To do what your looking for will require javascrpit, CSS would only be part of the solution. I am guessing that your not a programmer so it maybe best to try and find a script or tutorial you can...
One of you problems is that the value of "id" is not passed to the "stateChanged" function. "id" is a local variable inside the "showHint" function so "stateChanged" has no way of knowing what the...
Each piece will need a unique id (or even a custom attribute) and then based on the id you can determine which sound should be played for it. I think I would just make an array of audio files and an...
Are you getting any errors? Most browsers now have developer tools so you can look at what errors are be sent to the console. Or for firefox you can get the firebug addon, its a lot nicer than the...
Javascript doesn't allow carriage returns or new lines in a strings, the HTML is technically a string. Each line must have quotes around it and use a "+" on the end to have it attach the next line.
...
In the script you found the reason it is likely changing monthly is because there is an externally controlled factor (month) that allows it to determine what image to show.
In the past, when I have gone looking for a host, my biggest point is top notch custom service. I usually spend days, if not weeks, researching the companies I am considering. I look for legitimate...
It is usually best to write out any "code" (HTML, CSS, Javascript, PHP, ect) by hand. I guess some like things like Dreamweaver and/or other WYSIWYG's. But most (more like all) of these...
dadli is likely referring to articles like this one, posted in Sept. of last year https://bechtsoudis.com/hacking/php-code-into-jpeg-metadata-from-hide-to-unhide/. A malicious person can use any...
I just made some captcha code a few weeks ago. Basically I made a white rectangle background and then on top of it I randomly placed about 50 black rectangles 2 pixels by 20 pixels, for distortion....