treehouse : what would you like to learn today?
Web Design Web Development iOS Development

timmey

  • Getting my Sidebar 100% Height

    maybe you can start with this #wrapper { margin:0; padding-right:250px; position: relative; height: 100%; overflow: hidden; } #sidebar{ border-top: 1px solid black; padding:30px; background:#343434; position: absolute; top: 0; left: 0; …
    Comment by timmey August 2012 permalink
  • Most effective way to iterate with JavaScript

    maybe this can be a starting point http://jsfiddle.net/BLwgJ/258/ you can use siblings() to hide the other divs.
    Comment by timmey August 2012 permalink
  • Help with a full width drop down navigation / menu bar

    first your css #nav { width: 100%; float: left; margin: 0 0 1em 0; background-color: #003471; border-bottom: 0px solid #ccc; } lets the x-scrollbar appear. because the padding is added to 100%. delete padding-left from #nav and add it to you…
    Comment by timmey August 2012 permalink
  • Wide slider centered.

    you could use img {max-width: 100%} and the images will fill the container. if you dont want to use this, try something like this yhttp://css-tricks.com/centering-in-the-unknown/
    Comment by timmey July 2012 permalink
  • Round border for images

    border-radius is your friend i.e. http://jsfiddle.net/YEHdP/
    Comment by timmey June 2012 permalink
  • Embarrassing Layout Problem.

    well you set every div to height: 200px; so the #main container is only 200px high. i have updated ur jsfiddle: http://jsfiddle.net/C77Cj/6/ and no need to wrap the header and footer with an extra div.
    Comment by timmey June 2012 permalink
  • need help again, please help!!!

    hey alextash, 1) the #header needs a left-attribute, then you will see that its positioned to the browser window. 2) if you set position:absolute you need a width like wrapper has. i made a jsfiddle, where you can see it and placed another div in…
    Comment by timmey June 2012 permalink
  • Sorry one last question...

    well if you set float: right the element is put to the right side of its container "canvas". but you cant use position:absolute; and float together, float has no effect there. i looked at your page again, maybe changing the following style…
    Comment by timmey June 2012 permalink
  • Sorry one last question...

    the problem is the position: absolute; just reduce the sice of window on the laptop and it should not be visible. because the parent container "canvas" and "canvasWrapper" have no position-attribute the "stockticker" di…
    Comment by timmey May 2012 permalink
  • Hiding an Empty Div with jQuery

    well the problem is that you have multiple divs with class .itemBubble i guess. you have to use something like each. dont know if theres a better way, im no expert.. but maybe it helps: http://jsfiddle.net/wHpkw/4/
    Comment by timmey May 2012 permalink
  • css-tricks nav hover effect

    he is using transition i guess. here is one example: http://jsfiddle.net/BLwgJ/246/ and here is the article chris wrote about how hes doing it on his page: http://css-tricks.com/transitions-only-after-page-load/​​​​​​
    Comment by timmey May 2012 permalink
  • Logo Effects

    you could use the :active pseudo-class little example: http://jsfiddle.net/rWFsQ/3/ just click the div
    Comment by timmey May 2012 permalink
  • 3 div float not correct in IE8

    well IE8 doenst support last-child, but its supporting first-child. maybe you can change it to something like this #latestEvents .event{ float:left; margin-left:90px; } #latestEvents .event:first-child{ margin-left:0px; }​
    Comment by timmey May 2012 permalink
  • Footer Issues

    check if you have included something like http://code.google.com/p/html5shiv/
    Comment by timmey May 2012 permalink
  • Responsive Layout Not adapting margin-left as div width decreases.

    .homepage-3col p {text-align: left}
    Comment by timmey May 2012 permalink
  • Footer Issues

    try replacing with and try again
    Comment by timmey May 2012 permalink
  • Responsive Layout Not adapting margin-left as div width decreases.

    dont know what else you want to put in your div, but one solution could be .homepage-3col { text-align: center; } .homepage-icon { margin-top:30px; }
    Comment by timmey May 2012 permalink
  • Need CSS HTML help.its about position:absolute,relative, float.

    on this site you will find some great tutorials, i.e. http://css-tricks.com/video-screencasts/110-quick-overview-of-css-position-values/ for positioning. and if you cant find a solution, just ask again ;) glad i could help
    Comment by timmey May 2012 permalink
  • menu with different items color

    if i get it right: how do you apply your stlyes to each button? if you have a class like .about-us {background: ..}, you could style the submenu with .about-us li {background: ..}
    Comment by timmey May 2012 permalink
  • Need CSS HTML help.its about position:absolute,relative, float.

    your "margin-top: 200px" is the problem, just remove it. some other points: 1. top: 150px has no effect, would change if you add position: relative i.e. 2. clear: left and clear: right -> clear: both 3. your div#flash_content ist now …
    Comment by timmey May 2012 permalink
  • anything slider, slide links to a different page

    just tested on the demo side and it worked. maybe some css is the problem?! do you have a link?
    Comment by timmey April 2012 permalink
  • Cant style menu

    your script adds class .sfHover to your li-elem when there is a submenu in your css you have .nav a:hover, .nav li.current_page_item a, .nav li.current_page_parent a, .nav li.current-menu-item a { background-color: rgb(234,223,206); color: rg…
    Comment by timmey April 2012 permalink
  • Responsive Help

    after every third article you are using you have to remove it. or the next article will start in a new line and isnt floated to the article before.
    Comment by timmey April 2012 permalink
  • Menu Bar Problem

    #navbar2 #holder ul li {float:left;} should fix it.
    Comment by timmey April 2012 permalink
  • .toFixed() probem/issue?

    thx for your response! like senff said, i just wondered why i got differend results. i found another function that seems to work fine or displays the expected numbers :-) : Your text to link...
    Comment by timmey March 2012 permalink
  • IE7 is messing up with me..

    the problem for your headline seems to be the body { line-height: 18px; } if you deactive it, the headline is shown correct. maybe you should check this.
    Comment by timmey March 2012 permalink
  • extra padding problem

    the problem is, that you set width: 100% and are using padding somewhere. ul#menulist_root li ul li a{ width:auto; } should fix it.
    Comment by timmey March 2012 permalink
  • Current Navigation Highlighting

    you should just add a class .selected for example for the selected parent. and you should add a class to your active li too. dont know what you are using for your side, but imo it would be the best way to style it. something like .active, .slec…
    Comment by timmey February 2012 permalink
  • Min width on fixed position?

    are you looking for something like this? http://jsfiddle.net/BLwgJ/237/
    Comment by timmey February 2012 permalink
  • Nav not working in IE V:8-9

    dont know if it will help, but you should check your closing tags Hjem Om Oss Brukeromtaler Nyheter < !-- ??? -->< !-- ??? --> Prosjekter Sveio Åkra Aksdal …
    Comment by timmey February 2012 permalink