Posts by Juliana Negreiros • 11 points
3 posts
- 
		1 votes3 answers678 viewsA: How to change the background of the radio button when it is selectedHello! I don’t know if I understand very well what you need, but I usually change the appearance of the radio with the same css checked property. I climbed an example in codepen if you want to take… 
- 
		0 votes3 answers111 viewsA: I want to make a bar with my logo and my submenuGood morning! You put your img tag inside the body tag, I don’t know if it’s generating any of your problems, but it can lead to problems later. As for Blur, I didn’t think it was probably done with… 
- 
		0 votes1 answer249 viewsA: Menu only appears on scroll upGood morning!! $(document).ready(function(){ $(window).on('scroll', function(){ if(scrollY > 100){ $('.navbar-header').addClass('scrolled'); } else{ $('.navbar-header').removeClass('scrolled'); }…