Jump to content

crocodilehun

New Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

crocodilehun's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi Stef. I would like to ask for your opinion. What would you suggest as a next step when we finish JS course? Should i continue to learn more, get deeper into the JS, work on more practice tasks and projects or should i continue to go to the PHP course? Will i get some better understanding if i continue and finish all of your course, including PHP & SQL course and StudioWebProjects, or should i firstly focus more on getting more complete knowledge and experience of JS? Thanks. Hope you're doing ok regarding the epidemic situation in the world.
  2. an update.. i've done this: #navigation ul li{ list-style-type: none; line-height: 200% and now it's working. in the very next video you explained this for another purpose but i haven't seen in till now. Thanks
  3. Thanks, but... i've done this at the end of the stylesheet: #navlist { list-style-type: none; line-height: 200%; } and then included it into .html file: <ul id="navlist"> <li><a href=#>Home</a></li> <li><a href=#>Store</a></li> <li><a href=#>Blog</a></li> <li><a href=#>Contact us</a></li> </ul> and it still didn't changed the list style. i've even done this: <ul style="list-style-type:none;"> didn't changed it either.
  4. Hi. I this lession you are talking about changing your UL buttons in the navigation bar so that they look like circles and then you set your list-style-type for them to "none". based on that, i've tried to do this: in structure-ch5.css add ul li .navlist { list-style-type: decimal; line-height: 200%; } and then i've tried to add this class in the <nav>: <nav id="navigation"> <h2>The Main navigation</h2> <ul class="navlist"> <li><a href=#>Home</a></li> <li><a href=#>Store</a></li> <li><a href=#>Blog</a></li> <li><a href=#>Contact us</a></li> </ul> </nav> and it does not work, nothing happens. What am I doing wrong? Thanks
×
×
  • Create New...