name in border Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
3 posters

    name in border

    Builderbox
    Builderbox
    Forumember


    Male Posts : 150
    Reputation : 1
    Language : English

    In progress name in border

    Post by Builderbox Thu 1 Oct - 16:43

    How can i add Posts,Birthday,Jon date and the rest in border like here : name in border Previe12
    Builderbox
    Builderbox
    Forumember


    Male Posts : 150
    Reputation : 1
    Language : English

    In progress Re: name in border

    Post by Builderbox Thu 1 Oct - 20:40

    bump!
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51505
    Reputation : 3523
    Language : English
    Location : United States

    In progress Re: name in border

    Post by SLGray Fri 2 Oct - 0:06

    Please don't double post. Your post needs to be separated by at least 24 hours before bumping. Please use the edit button instead!




    name in border Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: name in border

    Post by Ange Tuteur Fri 2 Oct - 21:24

    Hi @Builderbox,

    Do you want this in the post profile, or the profile page ?
    Builderbox
    Builderbox
    Forumember


    Male Posts : 150
    Reputation : 1
    Language : English

    In progress Re: name in border

    Post by Builderbox Sun 4 Oct - 13:30

    post
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    In progress Re: name in border

    Post by Ange Tuteur Sun 4 Oct - 16:27

    Okay, go to Display > Templates > General and open the template viewtopic_body. Edit

    Find :
    Code:
                         <!-- BEGIN profile_field -->
                         {postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}
                         <!-- END profile_field -->

    Replace by :
    Code:
                         <!-- BEGIN profile_field -->
                                                      <div class="profile-field">{postrow.displayed.profile_field.LABEL}{postrow.displayed.profile_field.CONTENT}{postrow.displayed.profile_field.SEPARATOR}</div>
                         <!-- END profile_field -->

    Save and publish. Add


    Then go to Display > Colors > CSS stylesheet and add the following rules to your stylesheet :
    Code:
    .profile-field {
      background:#EEE;
      border:1px solid #CCC;
      border-radius:3px;
      margin:3px 0;
      padding:3px;
    }

    You can change the colors ( EEE, CCC ) if you want. Smile