Showing posts with label css. Show all posts
Showing posts with label css. Show all posts

Tuesday, August 2, 2011

stick something on the bottom right


#stick-me-to-bottom-right {
position: fixed;
bottom: 0;
right: 0;
}

Monday, June 20, 2011

CSS bullets click on entire row

Click on entire row for list bullets:

li a {
    display: block;
}

Make url underline disappear in css

Make url underline disappear in CSS, no url underline anymore:

a {
    text-decoration: none;
}

Make list bullets disappear in CSS

Make list bullets disappear, in CSS:

li {
    list-style: none;
}

Saturday, March 26, 2011

making youtubelooper.com notes

http://youtubelooper.com/

htmlentities() - to prevent xss
urlencode() - to keep the lyric's spaces and new lines
<label> - to click on


<textarea onclick="this.focus(); this.select();"></textarea> - make it select all when clicked

style changes

Fixed something on bottom right of page with CSS:

     position: fixed;
     bottom: 0;  
     right: 0;

css to make pointer into a hand
    cursor: pointer;


get jquery: <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
jQuery to focus on something at the beginning:

  $(document).ready(function(){
      $("#inputboxid").focus();
  });



name.com sigh doesn't allow very long URL's