What's up community!
I need your help: I have struggled with two color curved background and couldn't find the answer how to make it. I will be grateful if you help me to figure out how to make that background.
What's up community!
I need your help: I have struggled with two color curved background and couldn't find the answer how to make it. I will be grateful if you help me to figure out how to make that background.
Hello mark_pherz, great work and keep coding and have fun. I reviewed your code in GitHub. The background is not two-colour curved. It's an image placed on the background colour (--very_pale_blue: #f5f7ff) and the images are in your images folder. There are two images one for the desktop view (pattern-background-desktop.svg) and the other one for the mobile view(pattern-background-mobile.svg). You could follow the following steps in the stylesheet to get it right.
I had issues at the time of using the font family. I mean when I used google fonts the font was either too boold for the <p> tag or not bold enough for the <h1> tag. It would be useful a little guide about what exact font we should use.
Hello jtatan, great work. I would love to provide a suggestion on Google fonts. Reviewed your code in index.html. Found u have copied the link from google fonts with only a font weight of 800.
I couldn't add the svg icon through css and could only paste it on HTML, but I'm not sure why.
Hello Aimee, I reviewed your code you copied the HTML element <svg> from the website which could only be used in index.html. If u want to place an image through CSS, you have to download the SVG from the website. Then place it in your project folder. Then follow any of these steps.
Unsure if there is a box shadow. Difficulty in entering the image once in the div element.
Hello sila98, well done all looks good.
I could see a box shadow in the design. If u want any u can add them to the class .container, using property box-shadow: h-offset(px) v-offset(px) blur(px) spread(px) colour;. Look at w3schools for more details on box shadow.
The method you used to select the image element is correct. There are many ways and the order in which the style is prioritized as higher to lower is given below. The higher order overrides the lower one.
Everything is looking Good except the shadow color and mobile views under 320px
Hey Mudasser Khan, great work and keep trying for a better responsive website. The website looks good, I can add some suggestions which I am following. You can try it.
@media (max-width: 575.98px) { ... } // Small devices (landscape phone) @media (min-width: 576px) and (max-width: 767.98px) { ... } // Medium devices (tablet, 768px and up) @media (min-width: 768px) and (max-width: 991.98px) { ... } // Large devices (desktops, 992px and up) @media (min-width: 992px) and (max-width: 1199.98px) { ... } // X-Large devices (large desktops, 1200px and up) @media (min-width: 1200px) and (max-width: 1399.98px) { ... } // XX-Large devices (large desktops, 1400px and up) @media (min-width: 1400px)
Hope it was helpful...
Okay, I'm going to come straight out of the gate and say I have NO IDEA what I'm doing for the middle area of the screen width. It looks good at 1440px. It looks good at 375px. Anything in between, I'm clueless. I tried for hours to get it to work before eventually giving up and turning to you guys. Can anyone help me with figuring out how to make it not look terrible in those middle sections? Thank you!!
If you're wondering what I'm talking about, go to Chrome's inspection tool, go to responsive mode, set it to 1440px, and just... slowly shrink it. It's terrible. I know it's terrible. You'll know it's terrible. I'm having a painful learning experience right now.
Hey Koi Hastilow, great work and keep trying for a better responsive website. The website looks good, I can add some suggestions which I am following. You can try it.
@media (max-width: 575.98px) { ... } // Small devices (landscape phone) @media (min-width: 576px) and (max-width: 767.98px) { ... } // Medium devices (tablet, 768px and up) @media (min-width: 768px) and (max-width: 991.98px) { ... } // Large devices (desktops, 992px and up) @media (min-width: 992px) and (max-width: 1199.98px) { ... } // X-Large devices (large desktops, 1200px and up) @media (min-width: 1200px) and (max-width: 1399.98px) { ... } // XX-Large devices (large desktops, 1400px and up) @media (min-width: 1400px)
Hope it was helpful...
Could someone explain to me how to make the image visible?
Hello Ecyla, I reviewed your git hub repository for the project QR-code-image. There was no image folder with an image file, hence the image was not visible. You could do the following steps to get the image.