Month: December 2016

Part 2: Coding a Drop Down Menu

I’m on day 2 of my quest to get a full understanding of how to code a horizontal navigation menu with a drop down submenu. Again, this is no easy task to wrap your head around. Fortunately for me there are numerous incredible coders who freely share their code online, which has helped me out

Continue Reading…

Month: December 2016

Inline-Block Div in a Div

A few days ago I wrote a post entitled “Floating Divs in a Div” where I shared a small quirk I was having with the float property when I coding a layout that had nested divs inside a larger div. After another post where I learned that ‘inline-block’ acts almost just like ‘float’ I wanted

Continue Reading…

Month: December 2016

Month: December 2016

Month: December 2016

Block Party: Block and Inline-Block

I’m trying to build up to coding a navigation bar, but the first step is getting some better understanding of {display: block;} and {display: inline-block;}. I can’t lie, at first I was like “what-the-what-now?” – but hopefully after this post these concepts will be a lot clearer to me and you if you’re just learning

Continue Reading…

Month: December 2016

Month: December 2016

Floating Divs in Div

One of the basic fundamentals of CSS (as far as I can tell) is nesting divs. Maybe that is the wrong terminology for this, maybe its parent and child, I don’t know and I’m still learning so please forgive me CSS gods. Anyways, placing div(s) inside another div is fundamental to controlling your layout. There

Continue Reading…

Month: December 2016

A Hyperlink Problem Resolved

I came across an issue coding a hyperlink for a ‘button’ yesterday. Let me first be clear though, when I say button I’m really speaking about a div. I was creating a horizontal menu with three divs that were to act like buttons, each with their own individual text options. It was something like this:

Continue Reading…

Month: December 2016

A Take on Coding Schools

I came across the article “Want a Job in Silicon Valley? Keep Away From Coding Schools” on Bloomberg yesterday.It’s a must read if your like me and trying to learn code on your own. Fortunately for me I have no crazy illusions that I’m going to be able to teach myself enough coding skills that

Continue Reading…

Month: December 2016

Universal Properties

I picked up this tidbit looking at some random CSS code. I noticed that you can set universal properties with an asterisk like this: * { color: blue; font-size: 1em;} With this added within my CSS I set all the text to the color blue and the text size to 1em.