Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • hi, jopvanHooft u have to just edit Your css file . style.css

    to remove the border of the navigation and widget area. need to remove the border left and right and add the border:0;
    and i think their a space between navigation and article section so reduce the 1px padding in .hentry class

    original css
    ————————
    .hentry {
    padding: 40px 0;
    }
    .site {
    background-color: #FFF;
    border-left: 1px solid #F2F2F2;
    border-right: 1px solid #F2F2F2;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    }

    Edited css
    ———————–
    .hentry {
    padding: 39px 0;
    }
    .site {
    background-color: #FFF;
    border:0;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    }

    Thread Starter Pramod raje

    (@pramod-raje)

    hmm thanks preeti.. but i am searching something else.. let me tell u
    when user fill up the register form user got a mail registration info. in this mail..

    their is a section ‘You may login here:’ so instead of [reglink] i want a login. when user click to the link its goes to the login form. now its goes to the register form

    in Dashboard wp member plugin
    setting > WP-Member > Emails. u will see the bellow code

    Thank you for registering for [blogname]

    Your registration information is below.
    You may wish to retain a copy for your records.

    username: [username]
    password: [password]

    You may login here:
    [reglink]

    You may change your password here:
    [members-area]

Viewing 2 replies - 1 through 2 (of 2 total)