Please help! | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 4

Please help!

Can someone please tell me why my code isn’t working? https://code.sololearn.com/WK1wTa3k4r70/?ref=app Thanks.

3rd Mar 2020, 7:49 PM
Ruth De Leon
Ruth De Leon - avatar
21 Respuestas
+ 9
The first thing you do when you something is wrong is verify the obvious, in this case it is the class name. You used class="logo", but for some reason in CSS you typed .Logo, and this also happens for class="container". Fix it and it should work fine. Here is the code, with some other modification. this is not the right way to do things tho, you should check the link I provided in one of your previous posts. https://code.sololearn.com/WYEzs2YS4TJd/?ref=app
3rd Mar 2020, 7:54 PM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 5
Classnames are written with lowercase in HTML, but in CSS they are written Capitalized, so change to lowercase
3rd Mar 2020, 8:08 PM
Davit Arakelyan
Davit Arakelyan - avatar
+ 5
Ruth De Leon usually on a mobile you need to make a responsive website. Again, check the video I sent to learn how to make a responsive navigation bar, because most websites now use that feature instead of writing two different versions.
4th Mar 2020, 8:51 AM
Aymane Boukrouh
Aymane Boukrouh - avatar
+ 5
Ruth De Leon Try out this CSS : .logo { text-align: center; color: #f27986; } .container { width: 100%; height: 100%; background: #000000; } .menu ul { display: flex; margin: 5%; } .menu ul li { list-style: none; padding: 0px 5px; color: #ffffff; cursor: pointer; } https://code.sololearn.com/WNxE49V1PCK0/?ref=app
4th Mar 2020, 10:33 AM
Donthack
Donthack - avatar
+ 3
It is not <ul>text</ul> and so on. You have to write it like this: <ul> <li>option1</li> <li>option2</li> </ul>
3rd Mar 2020, 7:56 PM
Gabriel Ilie
Gabriel Ilie - avatar
+ 3
Class "logo", not "Logo"
3rd Mar 2020, 8:26 PM
Davit Arakelyan
Davit Arakelyan - avatar
+ 3
Aymane Boukrouh [INACTIVE] Thanks I have fixed it. But it looks different on desktop. Do you know how I can fix the look on desktop?
3rd Mar 2020, 11:15 PM
Ruth De Leon
Ruth De Leon - avatar
+ 3
The <link> tag for CSS isn't needed in <head> tag
4th Mar 2020, 8:42 AM
🌸 Elina RL Shah 🌸
🌸 Elina RL Shah 🌸 - avatar
+ 2
If you want another look in desktop, you can write your new styles in @media screen and (min-width: SCREEN MINIMAL WIDTH){}
4th Mar 2020, 12:41 AM
Davit Arakelyan
Davit Arakelyan - avatar
+ 2
Replace ref="stylesheet" with rel="stylesheet"
4th Mar 2020, 9:09 AM
Jesse Pinkman
Jesse Pinkman - avatar
+ 1
Ruth De Leon can you elaborate what's problem in it??
3rd Mar 2020, 7:57 PM
Jesse Pinkman
Jesse Pinkman - avatar
+ 1
Aymane Boukrouh [INACTIVE] I still dont get what I did wrong. I can’t use class Logo in css?
3rd Mar 2020, 8:24 PM
Ruth De Leon
Ruth De Leon - avatar
+ 1
Davit Arakelyan it worked! Thanks!!! God bless you a lot! 😘😘😘
3rd Mar 2020, 10:58 PM
Ruth De Leon
Ruth De Leon - avatar
+ 1
Thank
5th Mar 2020, 9:55 AM
F4 TJK BLOG
+ 1
I work this code for you please see it
5th Mar 2020, 2:20 PM
Baxtishod Davronov
Baxtishod Davronov - avatar
+ 1
/* Created by Ruth De Leon */ .logo { text-align: center; color: #f27986; } .container { width: 100%; height: 100%; background: #000000; } .menu ul { display: inline-flex; margin: 5%; margin-left:-50px; } ul li { list-style: none; padding: 20%; margin:5px; color: #ffffff; cursor: pointer; }
5th Mar 2020, 2:24 PM
Baxtishod Davronov
Baxtishod Davronov - avatar
0
I did a small change in css .logo { text-align: center; color: #f27986; } .container { width: 100%; height: 100%; background: #000000; } .menu ul { display: inline-flex; margin-right: 5%; } .menu ul li { list-style: none; padding: 0px 20%; color: #ffffff; cursor: pointer; margin-right:15%; }
5th Mar 2020, 4:21 PM
Rohit Roby
Rohit Roby - avatar
0
The first thing you do when you something is wrong is verify the obvious, in this case it is the class name. You used class="logo", but for some reason in CSS you typed .Logo, and this also happens for class="container". Fix it and it should work fine. Here is the code, with some other modification. this is not the right way to do things tho, you should check the link I provided in one of your previous posts. https://code.sololearn.com/WYEzs2YS4TJd/?ref=app
6th Mar 2020, 11:32 AM
Levon Hakobyan
Levon Hakobyan - avatar
0
👍👍👍🎖️💶💶
6th Mar 2020, 11:37 AM
عباس لبصراوي
عباس لبصراوي - avatar
0
Remove the margins and paddings then add justify-content like this: .menu ul { display: flex; justify-content: space-between; }
14th Mar 2020, 9:22 AM
Ore
Ore - avatar