Activity Stream
48,167 MEMBERS
6870 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Hybrid View

AJ Blacklisted Need CSS help. 23rd Nov 2011, 12:38 PM
xTreme background-color:color didn't work ? 23rd Nov 2011, 12:53 PM
mahjong The background-color property... 23rd Nov 2011, 12:57 PM
soft2050 <style> .admin, .admin, .bot,... 23rd Nov 2011, 12:58 PM
DarkPrompt I don't like to use <span> at... 23rd Nov 2011, 01:03 PM
AJ Blacklisted soft2050... 23rd Nov 2011, 01:04 PM
volgan .admin, .admin, .bot,... 23rd Nov 2011, 01:05 PM
AJ Blacklisted I added this code n it worked... 24th Nov 2011, 06:27 AM
AJ Blacklisted thank you guys, i got it now :) 23rd Nov 2011, 01:11 PM
Florios you need to show page code, i also... 24th Nov 2011, 06:36 AM
AJ Blacklisted Issue is solved, i disabled the... 24th Nov 2011, 06:46 AM
Previous Post Previous Post   Next Post Next Post
  1.     
    #1
    Member
    Website's:
    WarezDownloads.us Crackcentral.co.uk

    Default Need CSS help.

    Hello guys,
    I need a little help regarding CSS . I want to edit my forums usergroup span
    so that it will become like



    this is implemented in this forum

    I tried with firebug but not getting exact code.
    Pls help to add the css to my skin

    Regards
    AJ Blacklisted Reviewed by AJ Blacklisted on . Need CSS help. Hello guys, I need a little help regarding CSS . I want to edit my forums usergroup span so that it will become like http://screensnapr.com/e/tS9z0x.png this is implemented in this forum I tried with firebug but not getting exact code. Pls help to add the css to my skin :) Rating: 5

    ADSPOT available on PR#3 Alexa 100K Site.




  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    CSOffensive.com
    background-color:color didn't work ?
    Counter Strike : Global Offensive Forum

  4.     
    #3
    Member
    The background-color property should work. Color codes:
    http://www.somacon.com/p142.php

    Good luck!

  5.     
    #4
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    PHP Code: 
    <style>
    .
    admin, .admin, .bot, .broadcaster, .co_admin, .designer, .forum_mod, .global_mod, .journalist, .level_I, .level_II, .level_III, .member, .partner, .security, .special, .vip, .banned, .guest, .validating, .dnserror {
        
    backgroundnone repeat scroll 0 0 #65A830;
        
    border-radius3px 3px 3px 3px;
        
    color#FFFFFF;
        
    displayinline-block;
        
    font-size11px;
        
    margin-bottom2px;
        
    padding3px 8px;
    }
    .
    admin {
        
    backgroundnone repeat scroll 0 0 #C24641;
    }
    </
    style>
    <
    span class="admin">Admin</span
    Only copy the base style like
    PHP Code: 
    .admin {
        
    backgroundnone repeat scroll 0 0 #C24641;


  6.     
    #5
    Member
    I don't like to use <span> at all... many times it seems better to use the own <div>. Usually, in vBulletin at least, you can add/edit that for each usergroup.

    Well, come on see the "opening" tag and its end. And the CSS used in there, as we can see it is:

    * For all usergroups
    Code: 
    .usergroup1, .usergroup2, .usergroup3
    {
    color:#fff;
    background:#65a830;
    padding:3px 8px;
    font-size:11px;
    -moz-border-radius:3px;
    -webkit-border-radius:3px  #fff;
    border-radius:3px #fff;
    margin-bottom:2px;
    display:inline-block
    }
    * For custom one usergroup
    Code: 
    .usergroup1
    {
    background:#FDD017
    }
    So, if you put it in your main CSS style... you can easily set in your forum settings to rule the tag:

    Code: 
    <div class="usergroup1"></div>
    I hope helped you!

    * EDIT: I DIDN'T SEE THE OTHER REPLY FOR THAT. THIS IS OTHER ONE ANYWAY. THANK YOU.

  7.     
    #6
    Member
    Website's:
    WarezDownloads.us Crackcentral.co.uk
    soft2050 , that went perfectly. thanks

    ADSPOT available on PR#3 Alexa 100K Site.




  8.     
    #7
    Member
    Website's:
    motionlite.net
    Code: 
    .admin,
    .admin,
    .bot,
    .broadcaster,
    .co_admin,
    .designer,
    .forum_mod,
    .global_mod,
    .journalist,
    .level_I,
    .level_II,
    .level_III,
    .member,
    .partner,
    .security,
    .special,
    .vip,.banned,
    .guest,
    .validating,
    .dnserror{color:#fff;background:#65a830;padding:3px
    8px;font-size:11px;-moz-border-radius:3px;-webkit-border-radius:3px  #fff;border-radius:3px #fff;margin-bottom:2px;display:inline-block}
    .admin{background:#C24641}
    .bot{background:#BDBDBD}
    .broadcaster{background:#827B60}
    .co_admin{background:#461B7E}
    .designer{background:#5843F0}
    .global_mod{background:#d59944}
    .forum_mod{background:#616D7E}
    .journalist{background:#306EFF}
    .level_I{background:#7D0541}
    .level_II{background:#7D0552}
    .level_III{background:#800517}
    .member{background:#7f7f7f}
    .partner{background:#F48C8C}
    .security{background:#800517}
    .special{background:#C7A317}
    .vip{background:#FDD017}
    .dns_error{background:#881418}
    .banned{background:#000}
    .guest,
    .validating{background:#F1CBCB}
    Code: 
    <span class="INSERT CSS TAG HERE">Admin</span>

  9.     
    #8
    Member
    Website's:
    WarezDownloads.us Crackcentral.co.uk
    Quote Originally Posted by volgan View Post
    Code: 
    .admin,
    .admin,
    .bot,
    .broadcaster,
    .co_admin,
    .designer,
    .forum_mod,
    .global_mod,
    .journalist,
    .level_I,
    .level_II,
    .level_III,
    .member,
    .partner,
    .security,
    .special,
    .vip,.banned,
    .guest,
    .validating,
    .dnserror{color:#fff;background:#65a830;padding:3px
    8px;font-size:11px;-moz-border-radius:3px;-webkit-border-radius:3px  #fff;border-radius:3px #fff;margin-bottom:2px;display:inline-block}
    .admin{background:#C24641}
    .bot{background:#BDBDBD}
    .broadcaster{background:#827B60}
    .co_admin{background:#461B7E}
    .designer{background:#5843F0}
    .global_mod{background:#d59944}
    .forum_mod{background:#616D7E}
    .journalist{background:#306EFF}
    .level_I{background:#7D0541}
    .level_II{background:#7D0552}
    .level_III{background:#800517}
    .member{background:#7f7f7f}
    .partner{background:#F48C8C}
    .security{background:#800517}
    .special{background:#C7A317}
    .vip{background:#FDD017}
    .dns_error{background:#881418}
    .banned{background:#000}
    .guest,
    .validating{background:#F1CBCB}
    Code: 
    <span class="INSERT CSS TAG HERE">Admin</span>
    I added this code n it worked perfectly but now there is some bugs with forums topic view in firefox. See http://screensnapr.com/e/uLCVJM.png
    The userinfo panel is moving to topic view in firefox. But no pbms with chrome..

    ADSPOT available on PR#3 Alexa 100K Site.




  10.     
    #9
    Member
    Website's:
    WarezDownloads.us Crackcentral.co.uk
    thank you guys, i got it now

    ADSPOT available on PR#3 Alexa 100K Site.




  11.     
    #10
    Banned
    Website's:
    RevLine.net LinkDetour.net
    you need to show page code, i also dont see anything in the css involiving positioning other than some padding..

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

BE SOCIAL