Search results

  1. NorseMan

    Div's are hanging on scaling the browser window.

    I found the solution my self. - I had to remove the hight on big_div and change it to min-height. - Set the position property of .nav_div to absolute, and position it at the bottom of .big_div. - And I had to remove this line: background-size: contain; /*Makes the background scaling.* Both...
  2. NorseMan

    Div's are hanging on scaling the browser window.

    It is the background image that is scaling, but the two div's is not. I have removed the img_div so I have just big_div and nav_div left. I thought that maybe this would help. I discovered that it is not the nav_div that is not scaling when I minimize the browser window. It doesn't follow the...
  3. NorseMan

    Can't remember - Fell out of this script.

    I got a login script I don't understand a thing of/seen me blind on it. The problem is more than I can understand, but I will try to describe it and try to make you understand the best I can. The login part and the DB are below. Whatever if I am logged in or not, I have admin rights, and those...
  4. NorseMan

    php time not updating

    The PHP code you provided will write the current Unix timestamp (the number of seconds since January 1, 1970, 00:00:00 UTC) to a file named index.html. If you want to display the time in a human-readable format in your HTML code, you can use the date() function to format the timestamp as...
  5. NorseMan

    A new site, grid, flex design and what to choose. How to do it?

    Will flex and flexbox mean the same as setting up the web page with X number of DIV boxes and then controlling them with CSS3. So, if you imagine that the DIV boxes are parallel both vertically and horizontally (like making a grid), they will be adjusted with CSS and form the intended and...
  6. NorseMan

    A new site, grid, flex design and what to choose. How to do it?

    A small draft is attached further down in the post. What I'm wondering is how the rest of you here who are familiar with grid design and flex box would set up the page. Below you see some examples of different GRID and FLEX solutions (the only thing that has not been considered or determined is...
  7. NorseMan

    Now it's 👍👌

    Now it's 👍👌
  8. NorseMan

    You see, no button. I am logged in. [IMG]

    You see, no button. I am logged in.
  9. NorseMan

    I can't find a button or a link for adding new posts. Can you tell me where I can find it, or...

    I can't find a button or a link for adding new posts. Can you tell me where I can find it, or how I add new posts? I tried to log out and in again, but it didn't help. Still can't find the orange button. I know it should be there. I tested out the demo version of the forum on the sites to...
  10. NorseMan

    I tried to log out and in again, but it didn't help. Still can't find the orange button. I know...

    I tried to log out and in again, but it didn't help. Still can't find the orange button. I know it should be there. I tested out the demo version of the forum on the sites to XenoForo. There is no orange button showing up 🤔🙄
  11. NorseMan

    I thought so, but I don't.

    I thought so, but I don't.
  12. NorseMan

    I can't find a button or a link for adding new posts. Can you tell me where I can find it, or...

    I can't find a button or a link for adding new posts. Can you tell me where I can find it, or how I add new posts?
  13. NorseMan

    I am here 😊👍🌞👌

    I am here 😊👍🌞👌
  14. NorseMan

    Congratulation with the new design 😊 It looks great 👍 Shouldn't a forum have the ability to...

    Congratulation with the new design 😊 It looks great 👍 Shouldn't a forum have the ability to create new posts? At least I can't find a button or link for this. How do I create a new post?
  15. NorseMan

    Login, user rights, session ++

    I got an that was written about 2 years ago, a script I can't find out of now. I hope you can What's left of the script is just snippets, or what's left of the code blocks. I really hope someone can help me. It is login and rights that are mostly concerned. Below you will find a picture of the...
  16. NorseMan

    Class script - 2 VSC errors

    I’m struggling with a script. In VSC I get 2 errors that I don’t understand. According to the VSC, the errors are found on line 3 and line 70. Column 41 and 18 Can someone here at PHP Builder be helpful in telling me where and what the error is? I can’t find out what or where it is regardless of...
  17. NorseMan

    PDO connection with error check

    Here is my DB connection: <?php try { $pdo = new PDO('mysql:host=mysqlserver.no;mydbname=mydb', 'myusername', 'mypassword'); $output = 'Database connection established.'; } catch (PDOException $e) { $output = 'Unable to connect to the database server: ' . $e->getMessage(); } When it comes to...
  18. NorseMan

    display inline problem

    I've lost my way, and now I can't find the right solution again. I've managed to do this before, but now I can't find the right combination. I have 1 DIV that contains two other DIVs. One is on the left side, and one is on the right side. The right side is the google translate drop down menu...
  19. NorseMan

    Problem with configuring Visual Studio Code again.

    I don't remember how I did this last time. Should the 1st line point to php.exe and the 2nd line point to phpdbg.exe or both pointing to php.exe? After i bought me a new laptop, VSC won't work because i have to re-configure it. Can you guys please tell me witch of the lines should include what...
  20. NorseMan

    Debugger

    Today I use Visual Studio for debugging, but I think this is to advanced in use. Advances in that way it's to complicated to set up with the extensions and configure those manually (in the JSON file I think it's called) to make it debug. I like it happens so much automatic as possible. So my...
Back
Top