Blog

  • HTML Frames

    Display HTML Pages In Frames In One Window

    Separate HTML Pages can be displayed in one browser window. Each HTML Page acts independently. With frames, different websites can be viewed at the same time.

    Frames are not easy to manipulate because each frame acts independently. The body tag cannot be used with the frame tag. Each frame must have a source which is the location of the web page.

    (more…)

  • HTML Cursor Icon

    HTML Change Mouse Cursor Icon

    HTML allows changing of the mouse cursor icon. Web designers can create custom icons to personalize websites. The mouse icons do not have dimension limits.

    The cursor can be changed when the mouse is place over specific content. In case the image is missing, use the auto parameter to use the default icon.

    (more…)

  • jQuery Left Right Scroll

    jQuery Left Right Scroll

    Use jQuery To Scroll From Left To Right

    With a single click, jQuery can be used to scroll from the top to bottom or left to right. The same procedure can be used to scroll from the bottom to the top or right to left. A perfect use for this procedure is a gallery or scrolling pages.

    Two links will be placed at the bottom that will act as top, bottom, left and right scroll buttons respectively. Scrolling from top to bottom only was created in the Ojambo.com jQuery Top Bottom Scroll. The procedure is cross-browser and works with out-dated browsers.

    (more…)

  • jQuery Top Bottom Scroll

    Use jQuery To Scroll From Top To Bottom

    With a single click, jQuery can be used to scroll from the top to bottom. The same procedure can be used to scroll from the bottom to the top. A perfect use for this procedure is a gallery or scrolling pages.

    Two links will be placed at the bottom that will act as top and bottom scroll buttons respectively. The procedure is cross-browser and works with out-dated browsers.

    (more…)

  • CSS Sticky Footer

    Keep Footer On Bottom

    Several methods exist for keeping the footer content on the bottom. Some use JavaScript or server-side programming. CSS can be used to position the footer on the bottom.

    All methods for keeping the footer on the bottom need to know the specific height of the page. CSS can utilize absolute positioning, but a simpler method exists using negative margins.

    (more…)