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

    How to "position" and "size" a class object

    That cracked me up 🤪😍
  2. O

    How to "position" and "size" a class object

    Have you ever joined or logged into a site? Do you need to move the box that shows up to log in? All modern browsers have a "save passwords" or something similar so when you go to one of those sites and click the log-in button your name and password are entered automatically. No need to move...
  3. O

    Z-Index not working

    OK!! You posted on at least two websites and wasted my time! 😡 Pick one and we'll continue there.
  4. O

    Z-Index not working

    @ sunny CSS with the HTML missing is worthless. Please enter your HTML using the </> located above and to the right in the post-it box. AND tell us what selector your first rule pertains to, it is missing But it looks like the drop-down may be the cause. Change the z-index on it.
  5. O

    How to "position" and "size" a class object

    As with any rectangle the size is done by assigning a height and a width. Where it appears is done using margins and maybe floats. Hard to answer without your code. This is a waste of time and totally unnecessary. FYI - You should add a "join the community" to the box.
  6. O

    How do I hide the modal after 5 seconds?

    I use firefox and the code works fine for me also.
  7. O

    Making Custom Classes Editable: Is it Possible?

    Altho there isn't anything really wrong with using <span> tags, they are INLINE elements. It would be much better to use elements that were designed to receive input from users. The <inline> tags. <p>What is the bride's name? <inline type="text" class="brideName">_ _ _ _</inline></p> <p>What is...
  8. O

    I need help building a website like Kingdom of Loathing!

    First, learn to use the search function on sites you visit. Especially on learning or helping sites cause this question must have been answered a billion times on here and all the other sites. Learn and I mean learn HTML/CSS/JAVASCRIPT/PHP - go here https://www.w3schools.com/
  9. O

    Who can help me?

    Most people here can, what is your problem? Post the HTML/CSS and tell us what is not working.
  10. O

    JavaScript How to addeventlistener for a variable referencing a static element without an ID attribute for video tag?

    You're trying to fire the listener when you click the inside the video tag so this will do that bob.addEventListener('click', function () {....}); fill in the dots.
  11. O

    CSS transition works on li element but not div

    Dah, sorry for being so dense. Was wondering why the fa- was in the tab. Been a while since I used those. :sick: I use the // to comment out things I want to be able to reinstate cause they are easier to find than a strange word in the code. Well, that's all I've got - Good Luck to you. You...
  12. O

    CSS transition works on li element but not div

    When I was teaching I always warned against using positioning. It almost always leads to more and more positioning. You have 10 position statements. FYI You have 4 link statements in your HTML body. They belong in the head. and "+Sans:ital,wght@0, ..." S/B "weight". Your still using " <i...
  13. O

    Trying to have a space between text and image

    On cg22's third try he/she got it. Use margin-left: 20px; in the.wtexta rule for the simplest solution.
  14. O

    JavaScript link website to payment gateway

    PHP exists on the server and executes there. HTML and the CSS that wasn't posted, exist on the user's computer. The only way they communicate is via JS. PHP may produce the HTML for the entire website including a pay button, but the only way PHP can send the information obtain from the code you...
  15. O

    HTML & CSS Help Hover animation stop after 1 click one of the tabs

    Sorry, Ron, the only hover I see in the CSS is the top menu words, and that just turns your color green. If they are clicked on - Where is the JS? FYI In the CSS : .tabs button{ ... color = #000000;} Notice the equal sign????
  16. O

    JavaScript Apparently 3 >= 2789

    How did you prove that this is true? Place an alert as the first command in the IF statement to see what the values really are.
  17. O

    JavaScript link website to payment gateway

    Fix what? No code. And if you want PHP fixed put your question in that section and not in the JS section, please.
  18. O

    CSS transition works on li element but not div

    Glad things worked out for you. :thumbsup:
  19. O

    CSS transition works on li element but not div

    Without the JS can't get it to work. But, two things stick out: 1.) What do you think this does - <i class="fa-solid fa-caret-down"></i>? It's empty. 2.) You have <li> inside of a <li> NO. Here is one way of doing this How To Create a Subnavigation Menu & How To Create a Side Navigation Dropdown
  20. O

    JavaScript Getting the sum of equal array elements, and creating a new array

    And I don't think how to do this could be explained so easily. Just giving you the code was the only way I can think of.
Back
Top Bottom