Skip to content

Tag: css

How can I reduce this amount of space in css

How can I reduce space between about and drop downbox. I tried but ckouldnt. Here is Css File :https://glory-textile.web.app/css/theme.css Here is website link : https://glory-textile.web.app Please help me , Suggestion and any kind of help will be apprecieted Answer Remove top: 99% from

why jQuery functions don’t work together?

I’m new to jQuery, my functions adds class active to buttons when different inputs have value. However, only one function out of two works at once. Both functions work just fine separately. Maybe I am missing something? I writing these functions directly on html file without document.ready, but it didn&…

How to make JS media query work properly?

Media query in JS works, but as soon as it’s nested within a function such as onscroll or onclick, they’ll not work properly. I’ll just put the code in here just in case you want to resize window easier: https://www.w3schools.com/code/tryit.asp?filename=GP7P1ENXH9JY Try to test the media que…

How to let JS code allow both input and textarea

I have some JS code that will turn my code bold, italicized, or underlined with user input, so if the user checks bold the text will be bolded. Here is the code: It is giving me an error, and it is not bolding/italicized/underlined. I think this is because the JS code is checking for input, but the tag is tex…