How hard is it to delete rounded corners?

by vjboc
6 replies
  • WEB DESIGN
  • |
How hard is it to delete rounded corners? Can I do this with CSS? I want to see what the site looks like with square corners.
#corners #delete #hard #rounded
  • Profile picture of the author vjboc
    I already figured it out.
    {{ DiscussionBoard.errors[5019456].message }}
  • Profile picture of the author mgreener
    Hi,

    Glad you figured it out. For others with this question, rounded corners are usually actual images. Try right clicking on the rounded corner to find the filename, edit the file, reupload and problem solved.
    {{ DiscussionBoard.errors[5020793].message }}
    • Profile picture of the author vjboc
      Originally Posted by mgreener View Post

      Hi,

      Glad you figured it out. For others with this question, rounded corners are usually actual images. Try right clicking on the rounded corner to find the filename, edit the file, reupload and problem solved.
      Thanks mgreener, Is there a way to do rounded corners with CSS?
      {{ DiscussionBoard.errors[5022268].message }}
  • Profile picture of the author Theron451
    Banned
    [DELETED]
    {{ DiscussionBoard.errors[5024369].message }}
    • Profile picture of the author ronc0011
      Actually there is a newer CSS standard , at least I think it' CSS at any rate there is a newish standard or protocol that creates rounded corners programmatically. However the last Time i looked into it, it had only spotty browser support. and for this reason it wasn't generally recommended and usually the preferred method used images as noted by mgreener In fact I think I posted her in this forum how to create rounded corners using images. to stop that all you would need to dois rename the images in your sites file system. or anything of that sort rename the classes or ids in the pages html any number of ways to stop the page from loading the images.


      OK I'm sorry about this I upgraded my browser to i.e. 9 and of course it has changed everything so nothing works like it used to. Up to this point I had always composed all my posts in a word document so word would do spellcheck and also any number of other checks grammar etc. I would then copy -N- paste it into he "reply box here on the forum i would also hit the button at the top which striped out all the formatting and this would leave my post with a modest font size and whatever the default font on the forum is. now for whatever reason I'm getting a large bold font and who knows what else it may look like on you guys end and again i apologize i don't know how to fix it yet or if i can fix it.
      {{ DiscussionBoard.errors[5024432].message }}
  • Profile picture of the author Kyle Oliveiro
    [DELETED]
    {{ DiscussionBoard.errors[5024618].message }}
    • Profile picture of the author vjboc
      Originally Posted by Kyle Oliveiro View Post

      Rounded corners are not necessarily images. With CSS3, the new border-radius property allows you to create rounded corners much more easily.
      I heard about this. What is the code and how do I implement this to my site?
      {{ DiscussionBoard.errors[5025322].message }}
  • Profile picture of the author jumpa
    I use this code [just for sharing]:


    <html><head>
    <style>
    .roundbox{
    width:400px;
    background:#ffffff;
    border-top-left-radius: 10px 10px;/* you can change the value bigger than 10 to make more rounded corner*/
    border-top-right-radius: 10px 10px;
    border-bottom-right-radius: 10px 10px;
    border-bottom-left-radius: 10px 10px;
    border:#000000 solid 3px;
    padding:5px;
    margin:30px auto 20px auto;
    }
    </style>
    </head>
    <body>
    <center>
    <div class="roundbox">
    This is Round Box made by css only
    This is Round Box made by css only
    This is Round Box made by css only
    This is Round Box made by css only
    This is Round Box made by css only
    This is Round Box made by css only
    This is Round Box made by css only
    </div>
    </body>
    </html>


    Have a nice try!
    {{ DiscussionBoard.errors[5043469].message }}

Trending Topics