Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by OldMan

  1. O

    Login forms

    Two questions that have me worried. Why have the passwords in a file and not encoded and saved in a database? And Why a separate login? Your answers should tell the page who you are. Or when PHP/JS recognizes you it could send you a second validation form.
  2. O

    HTML Automatic selection of elements

    I think the easiest, and the thing I'd try first would be to make an invisible div to cover the screen and therefore your tables, and open the canvas on that.
  3. O

    JavaScript vscode console

    @Pavel, install the extension "Live Server" into VScode. Link it to your browser [you can assign it to a hot key] Now every change you make in VScode will automatically show up in the browser. Here's another hint: When VScode is open and has focus Hold the window key and hit the right or left...
  4. O

    Fullscreen hero image on home page load

    What are you paying for your site? If you can't do this look at HostGator. I have a site there and have done this in the past, so I know it can be done.
  5. O

    JavaScript Can't close my custom alert

    alert_container = document.getElementById("alertContainer2"); I don't see where you assign an ID.
  6. O

    Proper accessible structure of a form field within a sentence

    Works fine, Maybe change the input type to number? Also play around with week, month, and date for fun.
  7. O

    Syntax for external files

    I'm sorry alexcray, but things are a little simpler -> "href " is the URL of an external script. We could JS the same way but "src" allows us to call the script in three different ways: asynchronously , defer , and just run it where the script tag exists. I don't think if JS was called like...
  8. O

    can I use only landscape and portrait modes in media queries for responsive design

    Not sure what you mean by "screens" -> If all screens are ''' It will be easier to answer your query if you provide the code or a link. If you just try using the query. You should know the answer yourself.
  9. O

    Syntax for external files

    Coding works in mysterious ways. The most probable reason might be that the people who maintain JavaScript differ from those who take care of HTML/CSS and want different call standards.
  10. O

    PHP PHP Warning: Undefined array key

    Looking at this line -> xhr.send(func=facturen&name=*); It's hard to tell if this is a single quote or a tilde mark. What happens if you use the double quote?>
  11. O

    Merry Christmas and Happy Holidays from Code Forum

    Merry Christmas to you and yours Malcolm and all programmers on the site.
  12. O

    PHP Newbie Here

    Do you have control over the PHP ver you are using? If yes I'd just go back to the old version. If you want the upgrade you need to turn error reporting on to see the errors. Here is what to place in your code to do that: ini_set('display_errors', 1); ini_set('display_startup_errors', 1)...
  13. O

    How to make website control switch

    I'd use the Switch Statement in JavaScript to do this. Find it here: JavaScript Switch Statement
  14. O

    CSS example Example source sites available?

    Coders are lazy! We need your code to see what's wrong. We don't want to spend a day writing code for you and get "Oh, That's not what I meant.". I have to guess what your header is - The orange box? Give us the code and be more clear as to what you want. BTW - are there sites online providing...
  15. O

    CSS Row Heigth

    Use calc() to get results. And correct the spelling in the .container{hight: 100vh;} <style> .container{ background-color: purple; height: 100vh; } .header{ background-color: brown; height: 35px; } .hero { background-color: yellow; min-height: calc(100vh - 260px); } .footer{...
Back
Top Bottom