FM Design
Would you like to react to this message? Create an account in a few clicks or log in to continue.

IMPORTANT

FM Design is in read-only mode, please click here for more information.

Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49

» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21

» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28

» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15

» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11

» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24

» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58

» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50

» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22

» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12

» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10

» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51

» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11

» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19

» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34

Recent Tutorials
Top posting users this month

Who is online?
In total there are 15 users online :: 0 Registered, 0 Hidden and 15 Guests :: 2 Bots

None

[ View the whole list ]


Most users ever online was 515 on Tue 14 Sep 2021, 15:24

Mouseover Profile info

View previous topic View next topic Go down

mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Sun 22 Sep 2013, 11:00

Mouseover Profile info Untitl10


how can i do this ?

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 23 Sep 2013, 00:31

Can you provide a link to the forum you've seen this on?
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Mon 23 Sep 2013, 01:28

ohh yeah here it is

Code:
http://punbb-design.forumotion.com/t7-javascript-mouseover-profile-info
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Mon 23 Sep 2013, 20:45

You will need to register to see that code content. I am not going to rip their codes and post it publicly, so I'd recommend registering with that forum to access its content, sorry.
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Tue 24 Sep 2013, 06:38


HTML js Code
Code:
jQuery(document).ready(function(){
    jQuery('.tcr a[href*="/u"]').mouseover(function(){
    jQuery(this).parents('strong').css('position', 'relative');
    jQuery('.perfilInfo').remove();
    jQuery(this).parents('.tcr').css('overflow', 'visible');
    jQuery(this).before('
    <div class="perfilInfo" style="position:absolute;">
    <span class="setPerfil">
    <span>
    <img class="PerfilInfoImg" src="http://forum.teamspeak.com.br/public/style_images/master/profile/default_large.png" />
    <h2>'+jQuery(this).html()+'</h2>
    <p><b>Rank:</b><span></span></p>
    <p><b>Posts:</b><span></span></p>
    <p><b>Joined:</b><span></span></p>
    <p><b>Points:</b><span></span></p>
    <span class="linkPrf"><a href="/privmsg?mode=post&u='+jQuery(this).attr('href').replace('/u', '')+'">Send PM</a></span>
    <span class="linkPrf"><a href="'+jQuery(this).attr('href')+'">View Profile</a></span>
    </span>
    </span>
    </span>
    </div>
    ');
    jQuery.get(jQuery(this).attr('href'), function(retornoMembro){
    var avtPrf = jQuery('#profile-advanced-right img:first', retornoMembro).attr('src');
    jQuery('.PerfilInfoImg').attr('src', avtPrf);
    var perfil_rank = jQuery('#profile-advanced-right .module .main-content img:eq(1)', retornoMembro).attr('alt');
    var perfil_post = jQuery('#field_id-6 dd', retornoMembro).html();
    var perfil_cad = jQuery('#field_id-4 dd', retornoMembro).html();
    var perfil_lastV = jQuery('#field_id-13 dd', retornoMembro).html();
    jQuery('.setPerfil p:eq(0) span').html(perfil_rank);
    jQuery('.setPerfil p:eq(1) span').html(perfil_post);
    jQuery('.setPerfil p:eq(2) span').html(perfil_cad);
    jQuery('.setPerfil p:eq(3) span').html(perfil_lastV);
    });
    //get
    jQuery('.perfilInfo').mouseleave(function(){
    jQuery(this).remove();
    });//mouseleave
    });
    //mouseover
    });
CSS code
Code:
  .perfilInfo {
    background: url(http://i77.servimg.com/u/f77/16/58/45/96/bottom10.png) no-repeat 98% 0;
    float: left;
    height: 177px;
    left: -40em;
    padding: 16px 0 38px 5px;
    top: 13px;
    width: 510px;
    z-index: 999;
    }
    .setPerfil > span {
    background: #f9f9f9;
    border: 1px solid #999;
    border-radius: 3px;
    display: block;
    height: 100%;
    padding: 3px;
    }
    .sprite-icon_topic_latest {
    background: url(http://2img.net/i/fa/sprite_icons.png) no-repeat top left;
    background-position: -1083px 0;
    height: 9px;
    width: 11px;
    }
    .setPerfil {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    display: block;
    height: 100%;
    padding: 5px 5px 10px;
    }
    .setPerfil .PerfilInfoImg {
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid #D5D5D5;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
    display: table;
    float: left;
    height: 91px;
    padding: 1px;
    width: 91px;
    }
    .setPerfil h2 {
    background: #E1E1E1;
    border-radius: 0 10px 0 0;
    box-shadow: 1px 1px 0 #CCC;
    display: block;
    float: left;
    font-family: "Trebuchet MS";
    font-size: 19px;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 5px;
    text-shadow: 1px 1px 0 #fff;
    width: 382px;
    }
    .setPerfil p {
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    background: #F1F1F1;
    border-left: 3px solid #333;
    border-top: 1px solid #333;
    box-shadow: 1px 1px 0 #CCC;
    display: block;
    float: right;
    font-weight: 400;
    margin: 2px 5px;
    padding: 5px;
    text-align: left;
    width: 350px;
    }
    .setPerfil p {
    font-weight: 400;
    text-align: left;
    }
    .linkPrf {
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    background: #F6F6F6;
    border: 1px solid #DBDBDB;
    border-radius: 0 0 4px 4px;
    border-top: none;
    bottom: -7px;
    box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 0 rgba(0,0,0,0.3);
    color: #616161;
    float: left;
    height: 14px;
    left: 13.8em;
    margin: 2px;
    padding: 2px;
    text-align: center;
    text-decoration: none!important;
    transition: all .2s ease-in-out;
    width: 8em;
    }
    .linkPrf a {
    color: #616161!important;
    font-size: 12px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-decoration: none;
    }
    .setPerfil p:hover {
    box-shadow: 1px 1px 0 #9A9A9A;
    }.setPerfil p div {
    display: inline;
    }
this is the code they are using i registered there as unleashed Smile
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 25 Sep 2013, 05:34

Is this solved then?
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Wed 25 Sep 2013, 05:54

this code is for punbb
i want it for phpbb3 hmmmm any help miss bonita ?
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Wed 25 Sep 2013, 23:05

Try this:

Script:
Code:
jQuery(document).ready(function(){
        jQuery('dd.lastpost a[href*="/u"]').mouseover(function(){
        jQuery(this).parents('strong').css('position', 'relative');
        jQuery('.perfilInfo').remove();
        jQuery(this).parents('dd.lastpost').css('overflow', 'visible');
        jQuery(this).before('
        <div class="perfilInfo" style="position:absolute;">
        <span class="setPerfil">
        <span>
        <img class="PerfilInfoImg" src="http://2img.net/i/fa/invision/pp-blank-thumb.png" />
        <h2>'+jQuery(this).html()+'</h2>
        <p><b>Rank:</b><span></span></p>
        <p><b>Posts:</b><span></span></p>
        <p><b>Joined:</b><span></span></p>
        <p><b>Points:</b><span></span></p>
        <span class="linkPrf"><a href="/privmsg?mode=post&u='+jQuery(this).attr('href').replace('/u', '')+'">Send PM</a></span>
        <span class="linkPrf"><a href="'+jQuery(this).attr('href')+'">View Profile</a></span>
        </span>
        </span>
        </span>
        </div>
        ');
        jQuery.get(jQuery(this).attr('href'), function(retornoMembro){
        var avtPrf = jQuery('#profile-advanced-right img:first', retornoMembro).attr('src');
        jQuery('.PerfilInfoImg').attr('src', avtPrf);
        var perfil_rank = jQuery('#profile-advanced-right .module .main-content img:eq(1)', retornoMembro).attr('alt');
        var perfil_post = jQuery('#field_id-6 dd', retornoMembro).html();
        var perfil_cad = jQuery('#field_id-4 dd', retornoMembro).html();
        var perfil_lastV = jQuery('#field_id-13 dd', retornoMembro).html();
        jQuery('.setPerfil p:eq(0) span').html(perfil_rank);
        jQuery('.setPerfil p:eq(1) span').html(perfil_post);
        jQuery('.setPerfil p:eq(2) span').html(perfil_cad);
        jQuery('.setPerfil p:eq(3) span').html(perfil_lastV);
        });
    //get
    jQuery('.perfilInfo').mouseleave(function(){
    jQuery(this).remove();
    });//mouseleave
    });
    //mouseover
    });
CSS:
Code:
     .perfilInfo {
        background: url(http://i77.servimg.com/u/f77/16/58/45/96/bottom10.png) no-repeat 98% 0;
        float: left;
        height: 177px;
        left: -40em;
        padding: 16px 0 38px 5px;
        top: 13px;
        width: 510px;
        z-index: 999;
        }
        .setPerfil > span {
        background: #f9f9f9;
        border: 1px solid #999;
        border-radius: 3px;
        display: block;
        height: 100%;
        padding: 3px;
        }
        .sprite-icon_topic_latest {
        background: url(http://2img.net/i/fa/sprite_icons.png) no-repeat top left;
        background-position: -1083px 0;
        height: 9px;
        width: 11px;
        }
        .setPerfil {
        background: rgba(0,0,0,0.3);
        border-radius: 3px;
        display: block;
        height: 100%;
        padding: 5px 5px 10px;
        }
        .setPerfil .PerfilInfoImg {
        -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        background: #fff;
        border: 1px solid #D5D5D5;
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        display: table;
        float: left;
        height: 91px;
        padding: 1px;
        width: 91px;
        }
        .setPerfil h2 {
        background: #E1E1E1;
        border-radius: 0 10px 0 0;
        box-shadow: 1px 1px 0 #CCC;
        display: block;
        float: left;
        font-family: "Trebuchet MS";
        font-size: 19px;
        font-style: normal;
        font-variant: normal;
        font-weight: bold;
        margin-bottom: 10px;
        padding: 5px;
        text-shadow: 1px 1px 0 #fff;
        width: 382px;
        }
        .setPerfil p {
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        background: #F1F1F1;
        border-left: 3px solid #333;
        border-top: 1px solid #333;
        box-shadow: 1px 1px 0 #CCC;
        display: block;
        float: right;
        font-weight: 400;
        margin: 2px 5px;
        padding: 5px;
        text-align: left;
        width: 350px;
        }
        .setPerfil p {
        font-weight: 400;
        text-align: left;
        }
        .linkPrf {
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        background: #F6F6F6;
        border: 1px solid #DBDBDB;
        border-radius: 0 0 4px 4px;
        border-top: none;
        bottom: -7px;
        box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 0 rgba(0,0,0,0.3);
        color: #616161;
        float: left;
        height: 14px;
        left: 13.8em;
        margin: 2px;
        padding: 2px;
        text-align: center;
        text-decoration: none!important;
        transition: all .2s ease-in-out;
        width: 8em;
        }
        .linkPrf a {
        color: #616161!important;
        font-size: 12px;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        text-decoration: none;
        }
        .setPerfil p:hover {
        box-shadow: 1px 1px 0 #9A9A9A;
        }.setPerfil p div {
        display: inline;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(4) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:40px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(5) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:47px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(6) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:45px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(3),
        .setPerfil > span:nth-child(1) > p:nth-child(4),
        .setPerfil > span:nth-child(1) > p:nth-child(5),
        .setPerfil > span:nth-child(1) > p:nth-child(6){
        height:15px;
        }
        .linkPrf{
        position:relative;
        left:0px;
        bottom:30px;
        }
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Thu 26 Sep 2013, 02:12

omg i kiss u :*  (kidding)

you are awsomeeeeeeeeeeeeeeeeee bonita

thank you soo much for helping me cheers

but the problem is i dont see ranke image when i mouse over it ?
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Thu 26 Sep 2013, 08:14

Sorry, I missed that part when I was changing the selectors over to phpbb3.

Use these new codes:

Script:
Code:
jQuery(document).ready(function(){
        jQuery('dd.lastpost a[href*="/u"]').mouseover(function(){
        jQuery(this).parents('strong').css('position', 'relative');
        jQuery('.perfilInfo').remove();
        jQuery(this).parents('dd.lastpost').css('overflow', 'visible');
        jQuery(this).before('
        <div class="perfilInfo" style="position:absolute;">
        <span class="setPerfil">
        <span>
        <img class="PerfilInfoImg" src="http://2img.net/i/fa/invision/pp-blank-thumb.png" />
        <h2>'+jQuery(this).html()+'</h2>
        <p><b>Rank:</b><span></span></p>
        <p><b>Posts:</b><span></span></p>
        <p><b>Joined:</b><span></span></p>
        <p><b>Points:</b><span></span></p>
        <span class="linkPrf"><a href="/privmsg?mode=post&u='+jQuery(this).attr('href').replace('/u', '')+'">Send PM</a></span>
        <span class="linkPrf"><a href="'+jQuery(this).attr('href')+'">View Profile</a></span>
        </span>
        </span>
        </span>
        </div>
        ');
        jQuery.get(jQuery(this).attr('href'), function(retornoMembro){
        var avtPrf = jQuery('#profile-advanced-right img:first', retornoMembro).attr('src');
        jQuery('.PerfilInfoImg').attr('src', avtPrf);
        var perfil_rank = jQuery('#profile-advanced-right .module div img:eq(1)', retornoMembro).attr('alt');
        var perfil_post = jQuery('#field_id-6 dd', retornoMembro).html();
        var perfil_cad = jQuery('#field_id-4 dd', retornoMembro).html();
        var perfil_lastV = jQuery('#field_id-13 dd', retornoMembro).html();
        jQuery('.setPerfil p:eq(0) span').html(perfil_rank);
        jQuery('.setPerfil p:eq(1) span').html(perfil_post);
        jQuery('.setPerfil p:eq(2) span').html(perfil_cad);
        jQuery('.setPerfil p:eq(3) span').html(perfil_lastV);
        });
    //get
    jQuery('.perfilInfo').mouseleave(function(){
    jQuery(this).remove();
    });//mouseleave
    });
    //mouseover
    });
CSS:
Code:
      .perfilInfo {
        background: url(http://i77.servimg.com/u/f77/16/58/45/96/bottom10.png) no-repeat 98% 0;
        float: left;
        height: 177px;
        left: -40em;
        padding: 16px 0 38px 5px;
        top: 13px;
        width: 510px;
        z-index: 999;
        }
        .setPerfil > span {
        background: #f9f9f9;
        border: 1px solid #999;
        border-radius: 3px;
        display: block;
        height: 100%;
        padding: 3px;
        }
        .sprite-icon_topic_latest {
        background: url(http://2img.net/i/fa/sprite_icons.png) no-repeat top left;
        background-position: -1083px 0;
        height: 9px;
        width: 11px;
        }
        .setPerfil {
        background: rgba(0,0,0,0.3);
        border-radius: 3px;
        display: block;
        height: 100%;
        padding: 5px 5px 10px;
        }
        .setPerfil .PerfilInfoImg {
        -moz-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        -webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        background: #fff;
        border: 1px solid #D5D5D5;
        box-shadow: 0 2px 2px rgba(0,0,0,0.1);
        display: table;
        float: left;
        height: 91px;
        padding: 1px;
        width: 91px;
        }
        .setPerfil h2 {
        background: #E1E1E1;
        border-radius: 0 10px 0 0;
        box-shadow: 1px 1px 0 #CCC;
        display: block;
        float: left;
        font-family: "Trebuchet MS";
        font-size: 19px;
        font-style: normal;
        font-variant: normal;
        font-weight: bold;
        margin-bottom: 10px;
        padding: 5px;
        text-shadow: 1px 1px 0 #fff;
        width: 382px;
        }
        .setPerfil p {
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        background: #F1F1F1;
        border-left: 3px solid #333;
        border-top: 1px solid #333;
        box-shadow: 1px 1px 0 #CCC;
        display: block;
        float: right;
        font-weight: 400;
        margin: 2px 5px;
        padding: 5px;
        text-align: left;
        width: 350px;
        }
        .setPerfil p {
        font-weight: 400;
        text-align: left;
        }
        .linkPrf {
        -moz-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        background: #F6F6F6;
        border: 1px solid #DBDBDB;
        border-radius: 0 0 4px 4px;
        border-top: none;
        bottom: -7px;
        box-shadow: 0 1px 0 rgba(255,255,255,1) inset, 0 1px 0 rgba(0,0,0,0.3);
        color: #616161;
        float: left;
        height: 14px;
        left: 13.8em;
        margin: 2px;
        padding: 2px;
        text-align: center;
        text-decoration: none!important;
        transition: all .2s ease-in-out;
        width: 8em;
        }
        .linkPrf a {
        color: #616161!important;
        font-size: 12px;
        font-style: normal;
        font-variant: normal;
        font-weight: normal;
        text-decoration: none;
        }
        .setPerfil p:hover {
        box-shadow: 1px 1px 0 #9A9A9A;
        }.setPerfil p div {
        display: inline;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(4) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:40px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(5) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:47px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(6) > span:nth-child(2) > div:nth-child(1){
        position:relative;
        left:45px;
        bottom:16px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(3) > span:nth-child(2){
        position:relative;
        bottom:16px;
        left:38px;
        }
        .setPerfil > span:nth-child(1) > p:nth-child(3),
        .setPerfil > span:nth-child(1) > p:nth-child(4),
        .setPerfil > span:nth-child(1) > p:nth-child(5),
        .setPerfil > span:nth-child(1) > p:nth-child(6){
        height:15px;
        }
        .linkPrf{
        position:relative;
        left:0px;
        bottom:30px;
        }
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Thu 26 Sep 2013, 13:52

still nothing Sad i get a (,) ?

Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Thu 26 Sep 2013, 14:03

That is most likely the texts in your rank title, go to your current title and modify the texts so it displays what you want.
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Thu 26 Sep 2013, 14:06

Code:
<span class="Rougeimg"> ,</span>
this is wot am using in rank title ?
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Fri 27 Sep 2013, 02:21

It would look like this:
Code:
<span class="Rougeimg">Administrator</span>
Those tags will give your post background a red color, you can place your texts in the middle of those tags if you want.
mist3r0us_b0y
mist3r0us_b0y

Gender : Unspecified
Posts : 68
Points : 3992
Reputation : 16
Language : English
Browser : Browser : Mozilla Firefox Forum Version : Forum Version : Other

Postmist3r0us_b0y Fri 27 Sep 2013, 09:57

ohh thats awsome working thanks bonita

can lock the topic now
Ange Tuteur
Ange Tuteur
Administrator
Gender : Male
Posts : 4741
Points : 12043
Reputation : 2375
Location : Pennsylvania
Language : EN, JA, FR
Browser : Browser : Brave Forum Version : Forum Version : Forumactif Edge
https://sethclydesdale.github.io/ https://twitter.com/sethc1995

PostAnge Tuteur Fri 27 Sep 2013, 14:31

You're welcome~
<center>
Topic solved and locked
</center>
Sponsored content

PostSponsored content

View previous topic View next topic Back to top

Create an account or log in to leave a reply

You need to be a member in order to leave a reply.

Create an account

Join our community by creating a new account. It's easy!


Create a new account

Log in

Already have an account? No problem, log in here.


Log in

 
Permissions in this forum:
You cannot reply to topics in this forum