Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. O

    CSS Image and container departing ways:

    This is one of the reasons you don't go and post all over the web. Go read my answer to your problems at this link https://www.thecodingforums.com/threads/im-having-trouble-containing-a-title-an-image-and-a-button.974248/ and close this tread out.
  2. O

    CSS Image and container departing ways:

    Loom was a black screen - nothing else. And you give me CSS without the HTML. I would like all the code including whats in the header. Thank you
  3. O

    CSS coding looks great in visual code studio- but not cpanel?

    menator01 is half right. Noone makes multiple sites anymore, they use responsive design https://www.w3schools.com/html/html_responsive.asp All modern browsers have a responsive design mode where you can view the differences at different settings. Personally, I design for the smallest viewport...
  4. O

    HTML & CSS Assistance with project (Is this possible?)

    Yes, it's possible. Watch this vid
  5. O

    JavaScript Fire javascript on infinitely loading page

    Instead of an infinite loop why not a timed repetitive loop? Add whatever you want between the main executions.
  6. O

    HTML & CSS HTML Searching System

    It's part of javascript called AJAX. Two types of ajax requests, GET and POST, your's is the GET type. You can find out more here https://www.w3schools.com/js/js_ajax_intro.asp Be advised learning PHP or ASP may be necessary to use this.
  7. O

    How to blur images fetched from firebase Eg profiles android

    You don't tell us what 'firebase' is or why images obtained from it are different from any other image, which can be blurred using CSS or done by many websites such as https://www.befunky.com/features/blur-image/
  8. O

    JavaScript Video controls

    OK, this could go on for a lot longer, so Kitten are you talking about the three controls labeled Background, Media, and Master or the two controls under the video screen, the play/pause, and the volume? If it's the first group of three then what do they control?
  9. O

    HTML & CSS Help with Multilevel/Sublevels on navigation bar

    This needs work. It's just here to show you some of the styling that needs to be done and how to make a sub menu Please note where the head end and body begins - missing from yours <style> @import url('https://fonts.googleapis.com/css?family=Work+Sans:400,600'); body { margin: 0...
  10. O

    JavaScript just the spelling!

    I only learned this now! Thanks cbreemer.
  11. O

    CSS CSS Button Animation Question

    Guess you missed this
  12. O

    CSS CSS Button Animation Question

    Where is the html that goes with this? And that video the button only pulses once. I did find this https://codepen.io/StrengthandFreedom/pen/PoqZRgM It repeats because of this : animation-iteration-count: infinite; Give it a try in the hover section.
  13. O

    PHP Buttons does not work to submit or reset my data that needs to be saved

    The submit and reset buttons work inside a form, not a section. Bad HTML code. I am not going to wade through the jquery to see if you are trying to collect the data and send it via ajax. Are you?
  14. O

    HTML & CSS Text does not display correctly with my css code, it should show background under text

    This is so wrong, both the css and the html. It looks like your using bootcrap and not showing the styling for those divs. OK but you have an easy display here and you have complicated it all to h e double hockey sticks. OK the big ens = text-transform: uppercase;y the extra y in h3 .cc <h1...
  15. O

    JavaScript How to save a javascript calculated value in a file and read from the file

    Let me bud in here for a sec and throw my 2 cents in. "How long does it take to learn nodejs?" Depends on you, Right? - BUT nodejs is JavaScript and you should know that already. It does have some extra stuff - like reading and writing files and I just gave you those commands. Some servers...
  16. O

    JavaScript Array.from(map.keys())

    Use the Array.from(map.keys()) function !
  17. O

    JavaScript Array.from(map.keys())

    If you store an array of map keys it would be done on the server in a DB, nowhere near the JS you would use the invoke the from(map.key()) function. Depends on how you are going to use it. If the map doesn't change or changes very infrequently go with the DB else ......
  18. O

    JavaScript How to save a javascript calculated value in a file and read from the file

    A fast read for the file system in node.js https://www.w3schools.com/nodejs/nodejs_filesystem.asp And here is the official documentation https://nodejs.org/api/fs.html the node.js can be used with the MySQL, SQLlite, or postgreSQL
  19. O

    JavaScript just the spelling!

    won't work at all. Because you have IDs why notdocument.getElementById(VARIABLE_CLICK).value = 'X'; do you even need parent.frames[0]?
  20. O

    JavaScript How to save a javascript calculated value in a file and read from the file

    You can do this on the server using node.js or php and a db
Back
Top Bottom