Go Back   vb.org Archive > vBulletin 4 Discussion > vB4 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #11  
Old 01-22-2013, 07:03 AM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WorldCraft View Post
Can't access it
Reply With Quote
  #12  
Old 01-22-2013, 11:46 PM
WorldCraft WorldCraft is offline
 
Join Date: Jun 2010
Posts: 240
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm. Try something like this in additional.css

HTML Code:
/*This will remove the cutoff*/
#membersblock ul.blockrow li
{
width: auto;
}

/*This will allow the thumbs to center*/
.memberlist a.avatar
{
float: none;
width: auto;
}
Reply With Quote
  #13  
Old 01-23-2013, 12:48 AM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WorldCraft View Post
Hmm. Try something like this in additional.css

HTML Code:
/*This will remove the cutoff*/
#membersblock ul.blockrow li
{
width: auto;
}

/*This will allow the thumbs to center*/
.memberlist a.avatar
{
float: none;
width: auto;
}
Hm. Seems to have created some excess spacing within the border.

http://www.kh-mediaflare.net/group.php?groupid=11

Use these to see it:
User: Test Account
Password: account@test
Reply With Quote
  #14  
Old 01-23-2013, 01:18 AM
WorldCraft WorldCraft is offline
 
Join Date: Jun 2010
Posts: 240
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Figured it'd look like that, sorry.

Under '#membersblock ul.blockrow li' add text-align:center;

Under '.memberlist a.avatar' replace width:auto; with display:inline-block;
Reply With Quote
  #15  
Old 01-23-2013, 01:28 AM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WorldCraft View Post
Figured it'd look like that, sorry.

Under '#membersblock ul.blockrow li' add text-align:center;

Under '.memberlist a.avatar' replace width:auto; with display:inline-block;
Odd.

If you take a look, it didn't affect the Members block of the group, but it did affect the main group listings (Community -> Groups).

I did get a new idea, though, that'll probably work better. Is it possible to just have it list names and not avatars in a bullet list format?
  • Name 1
  • Name 2

Or maybe even remove the Members block since you can click on the number link under Members in the information area to see all members.
Reply With Quote
  #16  
Old 01-23-2013, 01:35 AM
WorldCraft WorldCraft is offline
 
Join Date: Jun 2010
Posts: 240
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You must have made a mistake somewhere, the display:inline-block; did not get accepted.

It should look like this:

HTML Code:
/*This will remove the cutoff*/
#membersblock ul.blockrow li
{
width: auto;
text-align: center;
}

/*This will allow the thumbs to center*/
.memberlist a.avatar
{
float: none;
display: inline-block;
}
Reply With Quote
  #17  
Old 01-23-2013, 01:50 AM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WorldCraft View Post
You must have made a mistake somewhere, the display:inline-block; did not get accepted.

It should look like this:

HTML Code:
/*This will remove the cutoff*/
#membersblock ul.blockrow li
{
width: auto;
text-align: center;
}

/*This will allow the thumbs to center*/
.memberlist a.avatar
{
float: none;
display: inline-block;
}
Yup, I did. However, check my last reply again. I edited it with better ideas.

Also, while we're here, I noticed that the body area for "Group Discussions" goes past the header and isn't aligned with it on the left, the Moderation Tools button in the group areas is fatter / thicker than when viewing a forum, and in a group discussion, the Moderator Tools choices text is too close to the selector circles.

In all these cases, I'm thinking padding adjustments?
Reply With Quote
  #18  
Old 01-23-2013, 02:18 AM
WorldCraft WorldCraft is offline
 
Join Date: Jun 2010
Posts: 240
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For the Group Page, add this to additional.css
HTML Code:
#group_discussion_inlinemod_form .blockhead
{
margin-left: -2px;
}
As for the button, I'm completely eyeballing this, but:
HTML Code:
#group_discussion_inlinemod_form #inlinemod_formctrls .popupctrl
{
padding: 1px 0 1px 1px;
}

For the Moderator Tools being close to the radio buttons, I'm not too sure about, by default they do not look like that, there is probably a conflict in the CSS somewhere. If you provide me with temporary mod permissions I'll Firebug it and take a look for you. For security reasons, remove the user and pass you have provided me from your previous post.
Reply With Quote
  #19  
Old 01-23-2013, 02:28 AM
Amaury Amaury is offline
 
Join Date: Nov 2011
Location: Ellensburg, WA
Posts: 1,075
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by WorldCraft View Post
For the Group Page, add this to additional.css
HTML Code:
#group_discussion_inlinemod_form .blockhead
{
margin-left: -2px;
}
As for the button, I'm completely eyeballing this, but:
HTML Code:
#group_discussion_inlinemod_form #inlinemod_formctrls .popupctrl
{
padding: 1px 0 1px 1px;
}

For the Moderator Tools being close to the radio buttons, I'm not too sure about, by default they do not look like that, there is probably a conflict in the CSS somewhere. If you provide me with temporary mod permissions I'll Firebug it and take a look for you. For security reasons, remove the user and pass you have provided me from your previous post.
In the second screenshot, if you take a look at a text piece (e.g., Delete Message) look how close it is to the selector circle compared to elsewhere:

http://i101.photobucket.com/albums/m...ps4e99c55a.png

Also, if you could change your password to something strong first, then I can do it. I don't want people hijacking a staff account with the password I already provided you. Alternatively, you could register yourself, and I could promote you. Up to you.
Reply With Quote
  #20  
Old 01-23-2013, 02:43 AM
WorldCraft WorldCraft is offline
 
Join Date: Jun 2010
Posts: 240
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I changed the password. And yes, I understand how it should look, which makes me think there is something conflicting in the CSS.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:29 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07977 seconds
  • Memory Usage 2,269KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (8)bbcode_html
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete