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. Mutiny

    HTML & CSS Bootstrap grid issue

    Your grid columns plus your offsets should not be more than 12. With the offsets you have, it's forcing things to a new line. I would recommend you have two columns, one that contains all three buttons stacked and a second for the image. Make sure that the offsets + column widths are no more...
  2. Mutiny

    JavaScript Woocommerce & Shopper Approved Integration

    Are you trying to put this tag on your website, or inside of Tag Manager? If you're trying to place this script tag inside of Tag Manager, typically there's some code on the website that takes the dynamic values and puts them into the data layer so Tag Manager can grab them and pass them to...
  3. Mutiny

    HTML & CSS Why these divs are overlapping on mobiles?

    In your main part CSS code in the mobile section, try setting your .container and .divs-equal to display: block;. I suspect something funky is going on with the table cell behavior once you reach a point where the content won't fit the container anymore.
  4. Mutiny

    HTML How to convert html code from horizintal to vertical?

    Something like this maybe? https://unminify.com/
  5. Mutiny

    Noob looking for guidance on a project

    For what you want to accomplish, it sounds like you want to use HTML5 Canvas. That's the API that will let you create and edit graphics. I haven't worked at all with HTML5 Canvas so I can't speak to what is necessary to do what you want to accomplish, but hopefully you can find a starting...
  6. Mutiny

    HTML & CSS How to improve my account-details form?

    For the fieldset, yes you can have multiples in one form. Usually you want one fieldset for each related group of fields in the form. So, if I had a form that had some fields for username and password, some fields for first name and last name and some fields for address and phone number, I...
  7. Mutiny

    HTML & CSS How can I improve my login form?

    For the SASS pre-processor, you need a program that can compile your SASS code into plain CSS the browser can understand. There are a few ways to do that, but I use gulp. Here's a good article that should help you get gulp installed with SASS so you can compile your CSS. With the container...
  8. Mutiny

    HTML & CSS How to improve my account-details form?

    Wrap each input/label pair inside of a container div that has the same class. That way, if you need to adjust spacing between items or change the layout later you have more you can work with. Also, I would recommend having multiple fields per row, in either a 2 or 3 column layout, rather than...
  9. Mutiny

    HTML & CSS How can I improve my login form?

    A couple of things come to mind. First issue I see is that unless you have some way of loading the components in isolation (for instance, what Vue.js does with its components) you're going to get CSS collisions when you have more than one component on the page. You might have a different input...
  10. Mutiny

    HTML & CSS how to split page on static and scroll-able parts?

    You can use overflow: scroll; to always show the scrollbar, even if there isn't enough content to normally justify a scrollbar. You could also use vertical width and / or vertical height CSS units for determining the size of the box. https://css-tricks.com/fun-viewport-units/
  11. Mutiny

    HTML & CSS Resize a img in a div that needs a specific position on page

    The width of 100% on the image means it will fill 100% of the div it sits inside of, however you don't have a size set on the div. You can use viewport width to set the width as a percentage of the browser width, such as width: 50vw which is 50% of the browser width...
  12. Mutiny

    Hello from a noob

    Hello and Welcome :)
  13. Mutiny

    Question

    Maybe Visual Basic? If you're using a program like Outlook for your email, you can use Visual Basic to write a macro to automate some things, maybe that would work. https://docs.microsoft.com/en-us/office/vba/outlook/concepts/getting-started/using-macros-to-customize-outlook
  14. Mutiny

    HTML & CSS "Forgot password" code problem!

    The button needs to be a submit input: <input type="submit" name="log" id="log" value="Login" />
  15. Mutiny

    PHP Uploaded File not arriving to server folder

    So, to be clear the file is uploading successfully in Chrome and you get the "Ok" dialog. On the iPhone you get a different dialog that says "Close". On iPhone files are not always uploaded, but in Chrome they are? This sounds like a device specific problem (iOS only) and it seems the problem...
  16. Mutiny

    PHP Uploaded File not arriving to server folder

    Was the code uploading files previously? I'm wondering if it's a PHP issue or an issue with the Javascript. If you create a basic HTML form with a file upload field and have that POST to your upload PHP script, does it work? Something like this...
  17. Mutiny

    PHP Uploaded File not arriving to server folder

    Was this working the last time we looked at it, or was it never working? What are the file permissions on the folder where the files are to be uploaded? It needs to be writable, so it should have permissions likely of either 644 or 755. If you look at it in a file manager, for instance...
  18. Mutiny

    Learning path to become a webdev? Online courses on Udemy or other platforms.

    The job listing should have a contact address, although things might be different in Indonesia compared to the US. Are there projects you can do to build your portfolio? Anything from a personal project to building a website for free / discount for a local business or family member to finding...
  19. Mutiny

    Learning path to become a webdev? Online courses on Udemy or other platforms.

    Where in the world are you located? Is your desired tech stack something local employers are looking for? You'll want to make sure whatever you learn is in demand in your local environment. Crazy idea, but what if you looked up some job positions now and talked to the companies, just to get a...
  20. Mutiny

    HTML & CSS "Forgot password" code problem!

    My guess is you have two separate files. It looks like there's an index.php file on your site: http://www.srtcmembers-beta.com/index.php Likely you have two versions of the form, one in index.php and one in login.htm. You can use PHP includes so that you only have one version of the form HTML...
Back
Top Bottom