i try to do a good job and think there a lot of things that you can do faster than me but a dont know how, so please ask me if you have advice. Thanks in advance.
Tomek
@qntekAll comments
- @Devalito67Submitted almost 2 years ago@qntekPosted almost 2 years ago
Hi there. Well I think that You should start learning html / css first before using bootstrap.
Also try to apply some media query to that project so it could display on mobile devices as well.
Good luck.
0 - @MCotonSubmitted almost 2 years ago
Most difficult, reviving my very rusty JS. It could definitely be cleaner, any (constructive) feedback on my JS is welcome.
Still unsure of Aria but that's a work of in progress. I doubt my (out of scope) alert to pick a value will be very accessible, advice on how to handle this better would be good.
EDIT: Have applied the suggestions from the comments section. An updated version has now been pushed to GitHub.
@qntekPosted almost 2 years agoHi there. Well, You could add underneath that window hidden paragraph with css value visibility = 'hidden'; It's content could be a message to pick one of those buttons. So:
if (!value) { paragraph.style.visibility = 'visible'; } else display thankyou window.
Marked as helpful0 - @blzee-makerSubmitted almost 2 years ago
-
How can make a site be more Responsive to multiple devices? what is a must to know for Responsive sites?
-
I think the code I have provided is a little complex. what can be a much simpler option that satisfies all the required needs?
-
What else can be done to cross the perfume's MRP value(169.99)? Aside from using the hr tag.
@qntekPosted almost 2 years agoTo make your page more responsive for all devices read about media queries: https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Using_media_queries
To style your page, good practice is to have separate file for css styling with you can import in head tag section, for example: <link rel="stylesheet" href="./papth-to-your-css-file.css">
To corss the perfume's value You shall use: text-decoration: line-through;
Marked as helpful0 -