@JacksonElo I think it looks good. Personally I might make my header not so thick and possibly the same with the footer. Maybe even some different fonts to mix it up. It looks good though!
Jackson
@JacksonElo
Cool! Thanks. I didn't realize how intimidating the design aspect could be
Oh, I can't figure out how to link the elements in the nav bar to the corresponding parts of the page. Any advice?
Luke
@lukenetti3
@JacksonElo Yeah for sure. I have just recently started doing Free Code Camp as well. I am studying electrical and computer engineering in college but thought it would be something fun over the summer. It will get more challenging, but don't give up. It's worth it!
@JacksonElo Yeah give me a second and I will look at it.
@JacksonElo So for the links to parts of the page. Each one of my sections I gave an id="section1" and so on for all my sections. Then in your button for the different parts, you should just be able to href="#section1" in it. I used bootstraps navbar so it might be a little different.
hey there, i am struggling and was wondering, if someone could help me: http://codepen.io/JonathanWbn/pen/AXVgkL problem: how du i get my navigation bar to be completely on top with no space?
Dylan
@dhcodes
@JonathanWbn take out position: fixed; for the ul attribute
Jonathan Wieben
@JonathanWbn
@dhcodes yes, but i want this blue bar to always stay on top.
so i have to keep fixed.
Dylan
@dhcodes
then do: position: fixed;
top: 0;
@JonathanWbn
Jonathan Wieben
@JonathanWbn
@dhcodes yep, got it. thanks.
CamperBot
@camperbot
jonathanwbn sends brownie points to @dhcodes :sparkles: :thumbsup: :sparkles:
yeah. the terror in this world is getting out of hand. just makes me sad.
thanks tho.
_
Dylan
@dhcodes
np. sad that we're all so used to it :(
happy coding
Jonathan Wieben
@JonathanWbn
if i may i would like to ask another question: how can i make the blue bar always "overwrite" everything, so when i scroll i dont see the text running through
Dylan
@dhcodes
@JonathanWbn add z-index:9999;
Jonathan Wieben
@JonathanWbn
Awesome! you made my day. thanks.
@dhcodes thanks
CamperBot
@camperbot
jonathanwbn sends brownie points to @dhcodes :sparkles: :thumbsup: :sparkles:
i thought the container element in bootstrap centered the content? maybe it just contains it all in one container. Do I need to apply an explicit width to container?