Good art is a taste, good design is an opinion.


Come as guest, stay as family.
Board Index

Come as guest, stay as family.


You are not connected. Please login or register

Foto

[Solved] view topic and photo topic



View previous topic View next topic Go down Message [Page 1 of 1]

1
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
how i can do these:

1) button for view topic
2) photo of topic near of the title.

[Solved]  view topic and photo topic Plzz10

thanks in advance. Very Happy

Powered by PunBB
Currently 0 users have thanked seka for this post:

2
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
#1 Nep did that, ask him Very Happy
#2 Forum version?

Powered by PunBB
Currently 0 users have thanked nanako for this post:

3
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
punbb my friend mark Very Happy

Powered by PunBB
Currently 0 users have thanked seka for this post:

4
Offline

  Shadow

Shadow
Administrator
Administrator
First one will be added as tutorial for like 24-48 hours. Second one will be private some time.

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

5
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
Nep can you tell me my friend how i can do the reputation green? .

Powered by PunBB
Currently 0 users have thanked seka for this post:

6
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
Javascript on All pages
Code:
$ ( function () {
 
    if (! window . localStorage ) return ;
 
    / / Default Avatar
    var Default_avatar = 'http://2img.net/i/fa/invision/pp-blank-thumb.png' ;
 
    / / Cache time, within 24 h * 60 m * 60 s * 1000 ms so one day
    var caching_time = 24 * 60 * 60 * 1000 ;
 
    / / Cache time error, within 60 s * 1000 ms then one minute
    var caching_error = 60 * 1000 ;
 
    var set_avatar = function ( id ) {
        $ ( '. mini_ava.member' + id ). html ( '<img src = "' + get_avatar ( id ) + "/> ' );
    };
 
    var get_avatar = function ( id ) {
        if(localStorage.getItem('t_ava'+id) < +new Date - caching_time || (localStorage.getItem('d_ava'+id)==default_avatar && localStorage.getItem('t_ava'+id) < +new Date - caching_error))
        {
            localStorage . setItem ( 'd_ava' + id , Default_avatar );
            $ . get ( '/ u' + id , function ( d ) {
                localStorage . setItem ( 't_ava' + id , + new Date );
                localStorage . setItem ( 'd_ava' + id , $ ( '# profile-advanced-right module. first div img: first, forumline td.row1.gensmall:.. first> img-frm-set.profile view.left dd img dl.left-box.details: first dd img row1 b gen: first img, img real_avatar '... , d ). first (). attr ( 'src' ) | | Default_avatar );
                set_avatar ( id );
            });
        }
        return localStorage . getItem ( 'd_ava' + id );
    };
 
    var to_replace = {};
 
    $ ( 'strong dd.lastpost a.gensmall, ipbtable tr td:. strong last-child span a.gensmall table td.tcr a.gensmall strong, strong forumline row3.over a.gensmall...' ). EACH ( function () {
        to_replace [ $ ( this ). attr ( 'href' ). substr ( 2 )] = 1 ;
        $ ( this ). closest ( 'td, dd' ). prepend ( '<div class = "mini_ava member' + $ ( this ). attr ( 'href' ). substr ( 2 ) + "> </ div> ' );
    });
 
    for ( i in to_replace )
    {
        set_avatar ( i );
    };
 
});
Then css code
Code:
. mini_ava {
  float : left ;
}
. mini_ava img {
  width : 40px ;
  height : 40px ;
  margin : 0 5px ;
  border-radius : 10px ;
  transition : all 2s ;
  -Moz-transition : all 2s ;
  -Webkit-transition : all 2s ;
  -O-transition : all 2s ;
}
. mini_ava img : hover
{
  width : 80px ;
  height : 80px ;
}
Well I like your attitude.
Link: http://forum.forumactif.com/t338068-avatar-du-membre-ayant-poste-en-dernier-sur-l-index-du-forum

Powered by PunBB
Currently 0 users have thanked nanako for this post:

7
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
ohh without copyrights i cant copy this code...

Powered by PunBB
Currently 0 users have thanked seka for this post:

8
Offline

  Zyon

Zyon
Punbb Guru
Punbb Guru
seka wrote:Nep can you tell me my friend how i can do the reputation green? .
Please open new topic for that question.

I will try to make that.

Powered by PunBB
Currently 0 users have thanked Zyon for this post:

9
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
I updated it. Solved now?

Powered by PunBB
Currently 0 users have thanked nanako for this post:

10
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
Mark i dont want the mini avatar code..but i want appears the photo of the topic in topic list... like here.

Powered by PunBB
Currently 0 users have thanked seka for this post:

11
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
What do you mean? You can resize it on css?

Powered by PunBB
Currently 0 users have thanked nanako for this post:

12
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
i want appears the first photo of the topic near at title.

Powered by PunBB
Currently 0 users have thanked seka for this post:

13
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
I don't really understand you but try the thing above.

Powered by PunBB
Currently 0 users have thanked nanako for this post:

14
Offline

  Zyon

Zyon
Punbb Guru
Punbb Guru
Seka want like on this update, see in tutorials, next to topic name is image (screenshot) for that. I think seka want that Smile

Powered by PunBB
Currently 0 users have thanked Zyon for this post:

15
Offline

  seka

seka
Punbb Rookie
Punbb Rookie
Yes screenshot my friend Very Happy

Powered by PunBB
Currently 0 users have thanked seka for this post:

16
Offline

  nanako

nanako
Punbb Guru
Punbb Guru
Ohh ok, now I get it.

Powered by PunBB
Currently 0 users have thanked nanako for this post:

17
Offline

  Shadow

Shadow
Administrator
Administrator
<div class="solved">Solved & Locked.</div>

Powered by PunBB
Currently 0 users have thanked Shadow for this post:

18
Offline

  Sponsored content



Powered by PunBB
Currently 0 users have thanked Sponsored content for this post:

View previous topic View next topic Back to top Message [Page 1 of 1]


Topic URL's

URL
BBcode
HTML

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