ยินดีต้อนรับคุณ, บุคคลทั่วไป กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน

เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น

ThaiSEOBoard.comพัฒนาเว็บไซต์Programmingรบกวนพี่ๆ ช่วยแต่ง CSS ให้ทีครับ ผมไม่เป้นเลย
หน้า: [1]   ลงล่าง
พิมพ์
ผู้เขียน หัวข้อ: รบกวนพี่ๆ ช่วยแต่ง CSS ให้ทีครับ ผมไม่เป้นเลย  (อ่าน 1153 ครั้ง)
0 สมาชิก และ 1 บุคคลทั่วไป กำลังดูหัวข้อนี้
ChilTunDer
ก๊วนเสียว
*

พลังน้ำใจ: 3
ออฟไลน์ ออฟไลน์

กระทู้: 318



ดูรายละเอียด
« เมื่อ: 06 ตุลาคม 2013, 23:07:43 »

คือไม่ต้องการให้สวยเหมือนเว็บทั่วไป แต่ขอแค่พอดูได้ ไม่เป็นเหลี่ยมๆอะครับ   Tongue

code
โค๊ด:
*{
margin:0;
padding:0;
}

html{
background:url('../images/bg_tile.jpg') #333d43;

}

body{
background:url('../images/bg_head.jpg') repeat-x top center, url('../images/bg_vert.jpg') repeat-x;
min-height:500px;
font:14px/1.3 'Segoe UI',Arial, sans-serif;
color:#888;
padding:10px;
}


/*----------------------------
CSS3 Animated Navigation
-----------------------------*/


.fancyNav{
/* Affects the UL element */
overflow: hidden;
display: inline-block;
}

.fancyNav li{
/* Specifying a fallback color and we define CSS3 gradients for the major browsers: */

background-color: #f0f0f0;
background-image: -webkit-gradient(linear,left top, left bottom,from(#fefefe), color-stop(0.5,#f0f0f0), color-stop(0.51, #e6e6e6));
background-image: -moz-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
background-image: -o-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
background-image: -ms-linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);
background-image: linear-gradient(#fefefe 0%, #f0f0f0 50%, #e6e6e6 51%);

border-right: 1px solid rgba(9, 9, 9, 0.125);

/* Adding a 1px inset highlight for a more polished efect: */

box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
-moz-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;
-webkit-box-shadow: 1px -1px 0 rgba(255, 255, 255, 0.6) inset;

position:relative;

float: left;
list-style: none;
}

.fancyNav li:after{

/* This creates a pseudo element inslide each LI */

content:'.';
text-indent:-9999px;
overflow:hidden;
position:absolute;
width:100%;
height:100%;
top:0;
left:0;
z-index:1;
opacity:0;

/* Gradients! */

background-image:-webkit-gradient(linear, left top, right top, from(rgba(168,168,168,0.5)),color-stop(0.5,rgba(168,168,168,0)), to(rgba(168,168,168,0.5)));
background-image:-moz-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
background-image:-o-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
background-image:-ms-linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));
background-image:linear-gradient(left, rgba(168,168,168,0.5), rgba(168,168,168,0) 50%, rgba(168,168,168,0.5));

/* Creating borders with box-shadow. Useful, as they don't affect the size of the element. */

box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;
-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff,1px 0 0 #a3a3a3,2px 0 0 #fff;

/* This will create a smooth transition for the opacity property */

-moz-transition:0.25s all;
-webkit-transition:0.25s all;
-o-transition:0.25s all;
transition:0.25s all;
}

/* Treating the first LI and li:after elements separately */

.fancyNav li:first-child{
border-radius: 4px 0 0 4px;
}

.fancyNav li:first-child:after,
.fancyNav li.selected:first-child:after{
box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
-moz-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;
-webkit-box-shadow:1px 0 0 #a3a3a3,2px 0 0 #fff;

border-radius:4px 0 0 4px;
}

.fancyNav li:last-child{
border-radius: 0 4px 4px 0;
}

/* Treating the last LI and li:after elements separately */

.fancyNav li:last-child:after,
.fancyNav li.selected:last-child:after{
box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
-moz-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;
-webkit-box-shadow:-1px 0 0 #a3a3a3,-2px 0 0 #fff;

border-radius:0 4px 4px 0;
}

.fancyNav li:hover:after,
.fancyNav li.selected:after,
.fancyNav li:target:after{
/* This property triggers the CSS3 transition */
opacity:1;
}

.fancyNav:hover li.selected:after,
.fancyNav:hover li:target:after{
/* Hides the targeted li when we are hovering on the UL */
opacity:0;
}

.fancyNav li.selected:hover:after,
.fancyNav li:target:hover:after{
opacity:1 !important;
}

/* Styling the anchor elements */

.fancyNav li a{
color: #5d5d5d;
display: inline-block;
font: 20px/1 Lobster,Arial,sans-serif;
padding: 12px 35px 14px;
position: relative;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
z-index: 2;
text-decoration: none !important;
white-space: nowrap;
}

.fancyNav a.homeIcon{
background: url('../images/home.png') no-repeat center center;
display: block;
overflow: hidden;
padding-left: 12px;
padding-right: 12px;
text-indent: -9999px;
width: 16px;
}

/*-------------------------
Search
--------------------------*/

.cf:before, .cf:after{
    content:"";
    display:table;
}
 
.cf:after{
    clear:both;
}
 
.cf{
    zoom:1;
}

/* Form wrapper styling */
.form-wrapper {
float: right;
    width: 450px;
    padding: 0px;
    margin: 15px;
}
 
/* Form text input */
 
.form-wrapper input {
    width: 330px;
    height: 20px;
    padding: 10px 5px;
    float: left;   
    font: bold 15px 'lucida sans', 'trebuchet MS', 'Tahoma';
    border: 0;
    background: #eee;
    border-radius: 3px 0 0 3px;     
}
 
.form-wrapper input:focus {
    outline: 0;
    background: #fff;
    box-shadow: 0 0 2px rgba(0,0,0,.8) inset;
}
 
.form-wrapper input::-webkit-input-placeholder {
   color: #999;
   font-weight: normal;
   font-style: italic;
}
 
.form-wrapper input:-moz-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}
 
.form-wrapper input:-ms-input-placeholder {
    color: #999;
    font-weight: normal;
    font-style: italic;
}   
 
/* Form submit button */
.form-wrapper button {
    overflow: visible;
    position: relative;
    float: right;
    border: 0;
    padding: 0;
    cursor: pointer;
    height: 40px;
    width: 110px;
    font: bold 15px/40px 'lucida sans', 'trebuchet MS', 'Tahoma';
    color: #fff;
    text-transform: uppercase;
    background: #d83c3c;
    border-radius: 0 3px 3px 0;     
    text-shadow: 0 -1px 0 rgba(0, 0 ,0, .3);

   
.form-wrapper button:hover{   
    background: #e54040;

   
.form-wrapper button:active,
.form-wrapper button:focus{ 
    background: #c42f2f;
    outline: 0; 
}
 
.form-wrapper button:before { /* left arrow */
    content: '';
    position: absolute;
    border-width: 8px 8px 8px 0;
    border-style: solid solid solid none;
    border-color: transparent #d83c3c transparent;
    top: 12px;
    left: -6px;
}
 
.form-wrapper button:hover:before{
    border-right-color: #e54040;
}
 
.form-wrapper button:focus:before,
.form-wrapper button:active:before{
        border-right-color: #c42f2f;
}     
 
.form-wrapper button::-moz-focus-inner { /* remove extra button spacing for Mozilla Firefox */
    border: 0;
    padding: 0;
}
/*-------------------------
Page Styles
--------------------------*/

.wrapper {
width: 1240px;
margin: 40px auto;
padding-bottom: 50px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

logo{

display: block;
padding: 20px 10px 0px;
position: relative;
width: auto;
height: auto;
}

nav{
display: block;
margin: 20px;
text-align: left;
width: 1200px;
}

.main{
display: table;
width:100%;
}

.content {
float: left;
padding: 10px;
width: 840px;
background-color:#CCCCCC;
}

.rightcontent {
float: right;
width: 350px;
background-color:#CCC;
}

#topten {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

#article {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

#recommend {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

#ads {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

#rlogin {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: 150px;
}

#rrecommend {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

#rads {
border:1px solid #999;
margin:10px 0;
padding:10px;
background-color:#EEE;
height: auto;
}

footer{
clear:both;
color: #BBBBBB;
font-size: 15px;
line-height: 1.6;
padding: 60px 20px 0;
text-align: center;
display:block;
}

/*#form1{
border:1px solid #cccccc;
margin:auto auto;
margin-top:100px;
width:400px;
}

#form1 input{
width:150px;
}*/

#submit{
border:1px solid #cccccc;
width:100px !important;
margin:10px;
}
}



 wanwan011
บันทึกการเข้า
zenon
คนรักเสียว
*

พลังน้ำใจ: 11
ออฟไลน์ ออฟไลน์

กระทู้: 174



ดูรายละเอียด
« ตอบ #1 เมื่อ: 06 ตุลาคม 2013, 23:51:48 »

คือไม่ต้องการให้ช่วยเหมือนคนอื่นทั่วไป แต่ให้แค่ Code ที่ใช้ได้ ไม่เป็นเหลี่ยมๆอะครับ    Tongue
customCss{
    border-radius:4px;
}
บันทึกการเข้า

*-*
karamail11
ก๊วนเสียว
*

พลังน้ำใจ: 24
ออฟไลน์ ออฟไลน์

กระทู้: 301



ดูรายละเอียด
« ตอบ #2 เมื่อ: 06 ตุลาคม 2013, 23:57:43 »

ลองหา css menu มาช่วยครับ

http://www.linkster.me/   wanwan016 wanwan016
บันทึกการเข้า
Surakrai
ก๊วนเสียว
*

พลังน้ำใจ: 71
ออฟไลน์ ออฟไลน์

กระทู้: 321



ดูรายละเอียด เว็บไซต์
« ตอบ #3 เมื่อ: 07 ตุลาคม 2013, 08:50:12 »

.content {
  border-radius: 5px;
}

.rightcontent {
  border-radius: 5px;
}
บันทึกการเข้า
หน้า: [1]   ขึ้นบน
พิมพ์