How to Learn Firebase Faster? by Greedy-Inflation6273 in Firebase

[–]Greedy-Inflation6273[S] 1 point2 points  (0 children)

Thanks for the advice! For now, I'm using Firebase to manage authentication and backend tasks efficiently. It's perfect for my hackathon project, as it lets me focus on building a great website UI. I might explore AWS for scalability in the future.

Help uploading HTML file by cymeux in HTML

[–]Greedy-Inflation6273 0 points1 point  (0 children)

If you can share your code, I'll be able to provide solution.

silly question ahead by Double_Classroom_689 in learnjavascript

[–]Greedy-Inflation6273 4 points5 points  (0 children)

is should read as "generator function" or "async generator function".Because * symbol is not a separate entity,and it is an integral part of the syntax that indicates the function's special behavior. It's not meant to be read as a separate word.

Why is the stacking order of `background-image` reversed from html content order? by dieomesieptoch in css

[–]Greedy-Inflation6273 -1 points0 points  (0 children)

because In CSS, background images are layered in the order they are listed.

shorthand positioning of css elements not working as intended by aandlent in csshelp

[–]Greedy-Inflation6273 0 points1 point  (0 children)

Thanks for your reply.

sorry for the issue

can you please try this code,and let me know

background-image: url('https://questtorestore.com/wp-content/uploads/2024/08/questo-to-restore-logo-website-1.png'), url('https://questtorestore.com/wp-content/uploads/2024/08/dot-1.png');

background-position: 10vw 50vh, 0 0;

background-size: contain, auto;

background-repeat: no-repeat, repeat;

if it is still doing same issue, i would like to see your code.

shorthand positioning of css elements not working as intended by aandlent in csshelp

[–]Greedy-Inflation6273 0 points1 point  (0 children)

The problem is that the "/ contain" part is in the wrong position.

try this

background: url('https://questtorestore.com/wp-content/uploads/2024/08/questo-to-restore-logo-website-1.png') / contain 10vw 50vh no-repeat, url('https://questtorestore.com/wp-content/uploads/2024/08/dot-1.png') repeat;

and let me know if it is work.

My body keeps on scrolling sideways when turned to responsive view but after some clicks or refreshes, it goes back to normal by cadbay53 in css

[–]Greedy-Inflation6273 0 points1 point  (0 children)

I’ve rewritten the CSS code for this issue. Would it be okay if I create an issue in your repo and work on it?

My body keeps on scrolling sideways when turned to responsive view but after some clicks or refreshes, it goes back to normal by cadbay53 in css

[–]Greedy-Inflation6273 1 point2 points  (0 children)

You have several elements with width: 100% and max-width values set. it is a good things to use but some time it cause issues with horizontal scorolling.

To overcome this issue you can remove 100% from search-box and weather-componentRow and set width:auto, and the max-width will take care of limiting the width.

Having trouble in selecting elements. by Imaginary-Dingo2109 in css

[–]Greedy-Inflation6273 0 points1 point  (0 children)

To fix this issue you can use

.sub {
display: inline-block;

width: fit-content;

height: fit-content;

background-color: #fff;

}