Как сделать края закругленными

голоса: 0
Как сделать чтобы блоки, меню, и прочее края были закругленными?? помогите?
Адрес сайта yomgir.ucoz.club
| Автор: | Категория: Дизайн сайта

Ответов: 1

голоса: 0

Пропишите в стили в самый низ следующие стили:

#catmenu,.sidebox .inner {border-radius: 5px;}

| Автор:
Дорогой, почему то не получается.. добавил в самый низ в стилях... ( в чем может быть проблема?... кеш очистил..

Пробуйте это: Вам не нравятся острые углы, тогда поставьте этот скрипт.
Ставим этот код в: css

input, textarea, select, input:focus, select:focus  
  {  
  font-family: Tahoma, Verdana, 'MS Sans Serif', Arial, sans-serif;  
  font-size: 10pt;  
  outline: none;  
  margin-top: 2px;  
  }  
  input  
  {  
  padding: 3px;  
  vertical-align: middle;  
  behavior: url('http://isu-ucoz.3dn.ru/a_scripts/i/ajax/input_readonly.htc');  
  }  
  textarea  
  {  
  padding: 5px 5px;  
  }  
  input[type=text],  
  input[type=password],  
  textarea,  
  select  
  {  
  background: none repeat scroll 0 0 #FFFFFF;  
  border-radius: 5px;  
  -moz-border-radius: 5px;  
  -webkit-border-radius: 5px;  
  -moz-box-sizing: padding-box;  
  -webkit-box-sizing: padding-box;  
  }  
  input[type=text]:focus,  
  input[type=password]:focus,  
  textarea:focus,  
  select:focus  
  {  
  box-shadow: 0 0 7px rgba(10,10,10,.5);  
  -moz-box-shadow: 0 0 7px rgba(10,10,10,.5);  
  -webkit-box-shadow: 0 0 7px rgba(10,10,10,.5);  
  }  
  select  
  {  
  /*margin: 0px;*/  
  padding: 2px;  
  }  
  /*option {  
  margin: 2px;  
  }*/  
  input[readonly], .read_only_input  
  {  
  background-color: #F9F9F9;  
  color: #333333;  
  }  
  input[type="checkbox"]  
  {  
  padding: 1px;  
  border: 0px;  
  }  
  input[type="submit"],  
  input[type="button"]  
  {  
  cursor: pointer;  
  padding: 2px;  
  margin-top: 0 !important;  
  }

...