Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Design and Graphics Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 05-10-2008, 07:01 PM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default A few quickie questions (im hoping)

Hey sorry, I tried my luck @ the vBulletin.com "How Do I..." forum and didn't get a response so I am hoping my luck is a bit better on the .org side of things.

1.) How would I have my forum setup, which is locked @ 1024px in width, so that whenever someone posts an image larger than 1024px that cell which the post is made is breaks from that width, but all other replies are kept @ the locked size of 1024px? I seem to remember seeing that but can't remember how or where it's done.

Here's an example of what I am asking about:
http://conceptart.org/forums/showthread.php?t=110572

The cell with the images has expanded horizontally much larger than the rest of the threads.

2.) How do I remove this column? http://eonix.shackspace.com/remove1.jpg

3.) Where's the padding dimensions for this cell controlled so that I may move it closer to the nav bar? http://eonix.shackspace.com/moveup.jpg

Thank you for your help
Reply With Quote
  #2  
Old 05-12-2008, 04:22 PM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I apologize for the bump. These are questions I really need answered and if it were to fall to the 2nd page I doubt they ever would be.
Reply With Quote
  #3  
Old 05-12-2008, 06:26 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1. There are a couple of image resize modifications here that will automatically resize any images over a certain size.

2. I don't know the templates offhand to remove those columns, but you can find them by turning on: vboptions > General Settings > Add Template Name in HTML Comments > set to Yes . Then go back to your page and view the source code and you will see the name of the template called around your part of the code. Then edit those templates to remove that column.

3. Again, check in the source code with the template names (as outlined in 2 above) and I think you will find something about a spacer? I couldn't tell you for sure without seeing the source code.
Reply With Quote
  #4  
Old 05-12-2008, 10:40 PM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey sorry - I'm not looking to resize images, but rather break a cell width much like the example does that I provided. I'll try your suggestions for 2 and 3. Thanks for the help!
Reply With Quote
  #5  
Old 05-12-2008, 10:46 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't see anything special about that page you linked to. If I have my browser window small, only the first post is stretched. If I stretch my browser window, then all the post stretch with it. Perhaps an image of what the problem is and then an image with the problem fixed would explain better.
Reply With Quote
  #6  
Old 05-13-2008, 04:26 AM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah, yes. You've already seen the problem when you had your browser at a medium width. See how the cell breaks with the images within it? How do I do that? Right now my entire forum stretches rather than just that one cell.

--------------- Added [DATE]1210657783[/DATE] at [TIME]1210657783[/TIME] ---------------

So I found the info I need to remove:

<td class="alt2"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>

However, when I move this, all columns/rows that aren't headers (re: Forum Name, Replies, Posts, etc) are shifted over to replace that removed column. This results in the headers not reflecting the columns they should be representing properly.

Reply With Quote
  #7  
Old 05-13-2008, 02:39 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by adamadamadam View Post
Ah, yes. You've already seen the problem when you had your browser at a medium width. See how the cell breaks with the images within it? How do I do that? Right now my entire forum stretches rather than just that one cell.
I think you need to compare your style to the default style because on my forum, where the postbit and SHOWTHREAD templates are left basically default, if a large image is posted in one post, it only stretches that one post, not all of the forum. So, it sounds like you did some modification yourself which is causing the problem and you will have to figure it out by comparing the default postbit and SHOWTHREAD templates to yours.

Quote:
Originally Posted by adamadamadam View Post
So I found the info I need to remove:

<td class="alt2"><img src="$stylevar[imgdir_statusicon]/forum_$forum[statusicon].gif" alt="" border="0" id="forum_statusicon_$forum[forumid]" /></td>

However, when I move this, all columns/rows that aren't headers (re: Forum Name, Replies, Posts, etc) are shifted over to replace that removed column. This results in the headers not reflecting the columns they should be representing properly.

You need to remove the column from the header also. And, if there is a row that stretches over all of the table and used to say, colspan=5, then you need to change it to colspan=4 (that is just an example, I can't remember if it is 5 or 6 that is default).

I found this thread. I'm not sure if it will help you or not: https://vborg.vbsupport.ru/showthread.php?t=167347
Reply With Quote
  #8  
Old 05-14-2008, 01:31 AM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey hey, I managed to get that column to delete! Woohoo! Thanks Lynne! I've another for you and your vB wizardry!

How would I remove the cells marked with the green X so that the orange outlined cells are moved to the left, under the titles?

http://dl.getdropbox.com/u/17188/movecell.jpg

I've tried looking through the the FORUMHOME template, and the WHOSONLINE template and can't find the right colspan= to edit

The ones I can manage to find and edit, effect the column titles "Currently Active Users" and "Polycount Statistics". Unfortunately, there's no colspan in between them. Any ideas? It was already recommended I try contacting the author - which I will do, but in the mean time I am hoping there's an easy'ish answer for this.

Thanks!
Reply With Quote
  #9  
Old 05-14-2008, 02:44 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

When you are unsure what template something is in, go to vboptions > General Settings > Add Template Name in HTML Comments > set to Yes . Then go back to your page and view the source code and you will see the name of the template called around the part of the code you are interested in.
Reply With Quote
  #10  
Old 05-14-2008, 03:10 AM
adamadamadam adamadamadam is offline
 
Join Date: Jan 2008
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ah sorry, I did that based on your previous recommendation to do so. I found the template (seemingly), yet any colspan I changed didn't effect that.

--------------- Added [DATE]1210752610[/DATE] at [TIME]1210752610[/TIME] ---------------

Fixed! Thanks for your help, Lynne!
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 09:59 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04148 seconds
  • Memory Usage 2,252KB
  • Queries Executed 11 (?)
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
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (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_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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete