TheDark12
-
UL menu: add | between links but not at ends?
@Hompimpa That is close, but older versions of IE do not support last child. The workaround is very simple though! Seeing as first child IS supported in IE, simply do the reverse. nav li { border-left: 1px solid black; } nav li:first-child { …
-
CSS3 Buttons
http://jsfiddle.net/ZcuXJ/9/ Added one of my own buttons to the mix. Hope you like! :)
-
Wrapping a parent div around floated elements
Here's a solution using percentage widths. I'm not sure if IE will support this method however. http://jsfiddle.net/UMgct/5/
-
jQuery Help - .hover Event Isn't Triggering
That did the trick! Thanks a ton for your help! :)
-
What kind of Degree did you get in Web Dev?
I think you'll find a lot of people (myself included) are self taught. :)
-
jQuery Help - .hover Event Isn't Triggering
That's the problem though. It works in the fiddle but not on the site when it's the exact same code.
-
jQuery Help - .hover Event Isn't Triggering
I have tried that so many times, but doing it that way doesn't change a thing. I have variables in place to call those elements instead because a lot more work is going into this part of the site. If the ID ever changes I wanted to able to just…
-
jQuery Help - .hover Event Isn't Triggering
Yep. It's a bit messy as the path to images/fonts are messed up. http://jsfiddle.net/5EzLs/
-
FTP client, Total Commander ?
@TheDoc Do you mean Transmit? It's what I'm currently using.
-
how to make full background images template
background-size: cover; CSS3, but it works in every browser except Firefox 3.6 and IE8 and below. If you feel like you need Firefox 3.6 support, just use the -moz- vendor prefix. EDIT: Looks like that method is already in Chris's article, coo…
-
mediatemple & php/mysql version
I wouldn't worry about it, just continue development. If the outdated version becomes an issue contact Mediatemple about it.
-
What music player do you keep handy while coding?
It's just called Google Music I believe.
-
What music player do you keep handy while coding?
I like to use Google Music myself. I have all my music stored on my Home PC, so for the sake on convenience I upload my favorite albums to Google Music and listen using the fantastic web app on any computer. Also works out well because I'm an a…
-
editable areas
You will need to create multiple Wordpress sidebars for each column. In your theme file you will add something like the following. And in you theme's functions.php file add the following. register_sidebar( array( 'name'…
-
mobile site css
Just helped someone else out on a similar question. All you need to do is add this to the header of your file. I would also apply this styling to the img tags so they fit the width of the viewport. #pagecontainer img { display: block; max-widt…
-
Mobile design doesn't work?
Try adding this to the header of the mobile theme.
-
Why some developers use dark development environment
I prefer dark backgrounds myself, I have no other reason other than personal preference. The Solarized (Dark) theme in Sublime Text 2 is my current favorite.
-
Adobe Dreamweaver. Love it or Hate it ?!?!?
I prefer a lighter method for my development. Features that @ernest mention do not apply to me so much as I develop for Wordpress. Sublime Text 2 is my current favorite for HTML/PHP, and I use Espresso for CSS.
-
Drop shadow on top and bottom of element? Please help!
I've got it! If you don't have an element above and below for @dfogge's method to work here's another solution, although it does require extra markup. See the below CSS. #main { width: 100%; height: 400px; background: #FFFF…
-
Help with getting media queries to work in IE 6,7 & 8...
Hi Ziku! I just got Paulie_D's suggested solution working on a media queried website I've created in the past. I think the issue to actually linking to the script from the header of your site, not the javascript plugin itself. Tell me wh…
-
Wordpress Page Redirection
I would use .htaccess to accomplish this. EDIT: This may help you: http://www.htaccessredirect.net/
-
Web Design without Adobe Suite?
@dalecooper I see what you mean about getting a commercial license versus a student license. I'm not sure why springlab is having trouble understanding. My advice is to use the alternative programs to start out with. If you get more work than …
-
My First Dynamic Width Site - Thoughts?
@Adman I didn't focus on getting every width to be perfect, just the most important, like iPhones, iPads, and large screens. That area may look bad on a 7in tablet like a Kindle Fire though. Can anyone check that for me?
-
My First Dynamic Width Site - Thoughts?
@MulletBoy Good catch, thank you! Fixed now.
-
My First Dynamic Width Site - Thoughts?
Thanks for the kind words guys, means a lot. I don't often get to share my work with people who understand it. :)
-
I can't control the positioning and size of my website, help!
I'm on a 2560 x 1440 display and it looks just fine in Firefox 8.0.1.
-
Div with list inside without height ?!
Place a clearing element under the ul inside the div. Like this: Menu Item 1 Menu Item 2 Menu Item 3 After doing that you can set bottom margins on the menu wrap div no problem!
-
Need help testing a pure CSS "Booth System" in IE9
Good news, thank you for your assistance.
-
Simple Navbar Problem in IE6+7
@chanman Unfortunately that's not cross browser compatible. Actually, I believe it's not supported in IE6 and IE7... the two browsers he's troubleshooting for! :)