Helgi
KPCKevin Powell - Community
•Created by Helgi on 2/27/2025 in #front-end
need help to understand
thanks a lot, i was thinking about gradient
5 replies
KPCKevin Powell - Community
•Created by Helgi on 2/27/2025 in #front-end
need help to understand

5 replies
KPCKevin Powell - Community
•Created by Helgi on 2/27/2025 in #front-end
need help to understand
I managed to place it on the black background, but I’m not entirely sure how to add other content after that.
5 replies
KPCKevin Powell - Community
•Created by Helgi on 2/23/2025 in #front-end
can't align the elements
okay i am not sure but i think i found solution i dont know if its correct though
i put min-width for percent and looks like it work. is there any better way to do it?
4 replies
KPCKevin Powell - Community
•Created by Helgi on 2/6/2025 in #front-end
js question
thanks guys 😄
10 replies
KPCKevin Powell - Community
•Created by Helgi on 2/6/2025 in #front-end
js question
hell.. i didnt think about that also
10 replies
KPCKevin Powell - Community
•Created by Helgi on 2/6/2025 in #front-end
js question
And another problem: when I write a lot of text, like rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr, it doesn't wrap. But if I add even a single space, everything works fine. What's the problem?
10 replies
KPCKevin Powell - Community
•Created by Helgi on 2/4/2025 in #front-end
js question
yeah i was playing with some values and i didnt save file
7 replies
KPCKevin Powell - Community
•Created by Helgi on 2/4/2025 in #front-end
js question
oh fuck bro no way that was so easy
7 replies
KPCKevin Powell - Community
•Created by Helgi on 2/2/2025 in #front-end
css questions
thanks guys
8 replies
KPCKevin Powell - Community
•Created by Helgi on 2/2/2025 in #front-end
need help to implement it
thankts for the tips ! appreciate it
9 replies
KPCKevin Powell - Community
•Created by Helgi on 2/2/2025 in #front-end
need help to implement it
What if I just apply this to the entire body?
body {
background: linear-gradient(to bottom, rgb(254, 250, 250) 25%, white 10%);
height: 100vh;
}
Of course, I'll need to adjust it with media queries when resizing the screen, but... I don't know, this should work too, right? It even looks better this way.
9 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
btw i implemented this
thanks for tips
divs.forEach((div, index) => {
div.setAttribute("data-index", index);
});
next.addEventListener("click", function () {
divs[currentIndex].classList.remove("active");
currentIndex = (currentIndex + 1) % divs.length;
divs[currentIndex].classList.add("active");
});
prev.addEventListener("click", function () {
divs[currentIndex].classList.remove("active");
currentIndex = (currentIndex - 1 + divs.length) % divs.length;
divs[currentIndex].classList.add("active");
});
54 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
i mean like i used them before in my div-img
https://codepen.io/etrbbr/pen/raBRbQM
and i removed them completely and put inside main. but now i cant position them.
but if i put them in first div, when i will hide first div, they will disappear also
54 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
yeah.. but wait, if i am not using my buttons inside my john and tanya divs.. so i actually need to use them inside or?
54 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
i have a question. how do i position buttons relative to my div-img, if i dont use them in .tanya and .john div?
54 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
oh thats actually jquery?
54 replies
KPCKevin Powell - Community
•Created by Helgi on 1/31/2025 in #front-end
i am running into a problem with removing and showing divs
ahhhh
54 replies