Results 1 to 2 of 2

Thread: Simple CSS editing

  1. #1
    Join Date
    Oct 2014
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Simple CSS editing

    Hi guys

    Wonder if someone can assist me ,

    I found a script that works well from dhtml website ,

    the once is called "Image with sliding description panel using CSS3 transitions"

    This works well, but the images I have , are too round , and need it to be circular edges

    any ideas how or where I can achieve this ?

    Also the ideal way I want to do this. -

    And when you mouse over , the info description displays


    Kind Regards
    Attached Files Attached Files
    Last edited by jscheuer1; 11-03-2014 at 02:24 PM. Reason: remove broken link

  2. #2
    Join Date
    Oct 2014
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    There are lot of code snippets around to create rounded corner DIVs using images. But here is a simple CSS technique of rounding off the corners of the DIV using some css attributes. This technique will work in Firefox, Safari, Chrome and any other CSS3-compatible browser. This technique will not work in Internet Explorer.

    Add following CSS attributes to your element to make its corner round.
    selector {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid;
    }

    all-corner-rounded-css

    To make only Top Left corner rounded, use following CSS.
    selector {
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border: 1px solid;
    }

Similar Threads

  1. mp4 movie editing
    By ajfmrf in forum Graphics
    Replies: 3
    Last Post: 07-06-2013, 10:09 AM
  2. DDLevelsMenu JS Editing Help
    By SHP in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 01-14-2009, 02:14 PM
  3. editing a simple script
    By nonz in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 04-23-2008, 11:48 AM
  4. need help editing thumbnailviewer.js
    By dmccaulley in forum Dynamic Drive scripts help
    Replies: 10
    Last Post: 02-26-2007, 05:18 AM
  5. Editing Menus with Simple Tree + Photo Album
    By panachepad in forum Dynamic Drive scripts help
    Replies: 0
    Last Post: 09-28-2006, 01:43 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •