PatrickFrankAIU / LunarSparkle2403A

Repository for ITWEB 200 students, Term 2403A (Summer 2024)
0 stars 0 forks source link

Site: Improve Navigation Visibility #6

Closed PatrickFrankAIU closed 3 months ago

PatrickFrankAIU commented 3 months ago

This site has a navigation bar near the top of each page, with links for all three pages. Can anything be done to improve the visibility of these hyperlinks?

Some ideas:

To indicate which page the user is currently on, follow these steps:

  1. Open one of the HTML pages and locate the navigation menu code.
  2. In the opening anchor tag of the menu item for that same page, add id='current' (after the HREF attribute) (Leave the other two menu items alone)
  3. Repeat for the other two pages, adjusting only the menu item for that page
  4. In style.css, add the following style: nav ul li a#current (it's a good idea to place this immediately below nav ul li a)
  5. Add styles to make this menu item appear different from the other menu items (such as a font color or background color difference)
  6. Test and observe the results
bufnjon commented 3 months ago

fixes are in,having issues doing commit

PatrickFrankAIU commented 3 months ago

@bufnjon Vickie when you get a chance a screenshot or a list of the errors would help. We'll take a look at it tonight during class.

bufnjon commented 3 months ago

vscode

Ive got all these extra files. I did close the file and the only way I could remember to get them back was to clone the repository so possibly it brought in extra changes from others. No error, the commit just keeps spinning.

PatrickFrankAIU commented 3 months ago

@bufnjon Vickie, if you have time before class, make note of all of your changes. It's likely that you'll have to clone the repo again and then apply your changes to the new copy. (You don't have to delete your existing copy of the repo to do this, so it should be fairly easy to copy your changes into the new clone.)

bufnjon commented 3 months ago

ok I'll hop on a little early!

PatrickFrankAIU commented 3 months ago

Also, you can try this if you want, but you should collect your changes elsewhere first. What this is SUPPOSED to do is pull the latest copy and then apply your changes on top of it. Then you have to sync again.

image