howlermiller
-
Long option element in Select breaks (pushes out) layout on mobile
Is it inline? That could be your problem, try setting it to display: inline-block;.
-
CSS Bootstrap framework- max width 960px?
All you have to do to make it 960px wide is change the max-width on the container-narrow to 960px.
-
Menu toggle for mobile site
Oh, and also: on the actual site, the content scrolls above the nav bar. If that isn't intended functionality, you might also want to add z-index: 1 onto the #navicon.
-
Menu toggle for mobile site
To address the first problem, all you have to do is add top: 0; to the #navicon selector. That will make it flush with the top of the screen, and keep it from jerking when opened and closed. If you want the menu list to stay fixed, add position: fi…
-
Navigation bar with image
Hey, welcome! The only way we can really do anything is if you give us enough code to work with. Try putting the necessary parts (read: more than you posted here, but less than your entire page) of your code into CodePen. Here's how
-
Wordpress blog post notification
You can also use Feedburner: http://feedburner.com/ Feedburner is probably a little more complicated to set up than the Wordpress plugin that Tyler suggested. However, Feedburner gives you analytics to allow you to track your subscribers. If you ne…
-
Why does firefox hate this code?
Nothing too fancy. I pasted your code into CodePen, and the unicode character showed up as a bullet. :) Glad I could help!
-
The Best way to learn web design and keep up with technology?
To quote the eminent Chris Coyier, "Just build websites!" http://justbuildwebsites.com/ It really is the only way to go. There's so much info out there that there's no possible way you'll ever keep up with it, so learn wha…
-
CSS3 TV, using border-radius
Something like this? http://cdpn.io/zihdl
-
Why does firefox hate this code?
That's SCSS. This may sound like a no-brainer, but you are putting that into a .scss file and compiling it, right? If that isn't your problem, then it could be the weird unicode character you have at the end of the third line. Try copying…
-
Web Page Critique / Suggestions
Hey, nice looking page! I've got a few little tips for you: I notice that you're using CSS for the borders around the square images, which is great! However, you're using an image for the borders around the circular images, which is …