Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS wordpress comment form … problem

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #36200
    dagash
    Participant

    hi ..
    i will try to code my comments template ..
    i visit wordpress codex ,and i read more articles about it .

    but i missed something … O_o

    html :










    my blog abdulmaged salah





    اكتب تعليقك








    حقل ضروري



    حقل ضروري























    css :


    #commentpart {
    width : 390px;
    height : 500px;
    }

    #commentform input{
    border: solid 1px #e0dfdf;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-family : arial ,Verdana, Tahoma, sans-serif;
    font-size: 11pt;
    font-weight : bold;
    background: #fbfafa;
    color : #607685;
    margin-bottom : 5px;
    height : 24px;
    width: 200px;
    padding : 3px;

    }


    #commentform input:focus{
    border: solid 1px #8a9db3;
    color : #607685;

    }

    #commentform .namespace{
    display: inline;
    }
    #commentform .email{
    display: inline;
    }

    .alertcomment {
    font-family: arial, tahoma, sans-serif;
    font-size : 11px;
    font-weight : bold;
    color : #d9476e;
    display: inline;
    }


    .commentarea textarea {
    border: solid 1px #e0dfdf;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    width : 375px;
    height : 170px;
    background: #fbfafa;
    font-family: arial, tahoma, sans-serif;
    font-size: 11pt;
    font-weight : bold;
    padding : 3px;
    margin-bottom : 5px;

    }

    .commentarea textarea:focus {
    border: solid 1px #8a9db3;
    color : #607685;
    }



    #commentform .submitcomment input {
    width : 100px;

    }

    #commentform .submitcomment input:hover {
    width : 100px;
    background : #607685;
    color : #f2f2f2;
    }


    #commentparttitle {
    border-bottom : 2px solid #8a9db3;
    padding-bottom: 2px;
    margin-bottom: 10px;
    }

    #commentparttitle h2 {
    font-family : arial, tahoma, sans-serif;
    font-size: 11pt;
    font-weight : bold;
    color : #8a9db3;
    margin : 0px 2px;
    }



    also , i visited and read this link :Comments costumization
    and this link : CODEX – comment form
    my idea is call the new wordpress function ( comment_form() ) to generate the form , and then get the comments by using ( comments_text() )..

    this is my form code ( css + html ) : source code

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.