vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Forum Display Enhancements - [rellect] Two columns of categories (https://vborg.vbsupport.ru/showthread.php?t=275114)

joeychgo 12-06-2011 09:45 PM

Quote:

Originally Posted by TheLastSuperman (Post 2275302)
I run 1920 x 1080 however I shrink my browser windows down to 1024 x 768 and swap back and forth when doing styles so this should be pretty close:

https://vborg.vbsupport.ru/attachmen...hmentid=134882

That's on a fresh 4.1.8 default style and as you can see if you have long thread titles or forum descriptions it might run over into other areas... I feel that this can be easily adjusted using CSS and would depend on if your using a Fluid or Fixed width style and if fixed width it would depend on the width... less would mean more adjustments so it's all aesthetically correct and a larger resolution may show no errors as you initially see in the screenshots the author posted.

Even if on fluid - the problem is how it would look to people who use 1024x768, which is about 20% of the internet users.

rellect 12-06-2011 09:53 PM

Quote:

Originally Posted by joeychgo (Post 2275326)
Even if on fluid - the problem is how it would look to people who use 1024x768, which is about 20% of the internet users.

Well, I can suggest 2 solutions:
identify the user's resolution, if it 1024 then
1. hide the sidebar
or
2. set it back to 1 column

If you would like one of the options,
I'll try add them in the next version

dog199200 12-06-2011 10:42 PM

I'm also having the same issue with everything bleeding over. I think all my widths sets are all fixed not fluid. Though where in the css does this edit exactly? I think i can do some editing on my own to fix it to match my forums needs

FReeSTER 12-06-2011 11:50 PM

this will be great if you can manage which categories you want to show side by side instead of the entire forums. :o

TheLastSuperman 12-06-2011 11:57 PM

Quote:

Originally Posted by joeychgo (Post 2275326)
Even if on fluid - the problem is how it would look to people who use 1024x768, which is about 20% of the internet users.

Quote:

Originally Posted by RellecT (Post 2275330)
Well, I can suggest 2 solutions:
identify the user's resolution, if it 1024 then
1. hide the sidebar
or
2. set it back to 1 column

If you would like one of the options,
I'll try add them in the next version

You can also do this, please bear in mind something had to go so it looked halfway decent when using a low resolution so thread/post counts are removed and so are the forum action links i.e. subscribe/rss etc.

Edit template rellect_2_column.css and find:

Code:

.forumbit_post .forumstats li,
.forumbit_post .forumstats_2 li
{
        padding-{vb:stylevar right}: 0 !important;
}

Add this under:

Code:

.forumstats.td, .forumactionlinks.td, span.forumthreadpost {
        display:none !important;
}

.foruminfo.td, .datacontainer {
        width: 60% !important;
}

.forumdescription {
        width: 72% !important;
}

.forumlastpost.td {
        width: 40% !important;
        overflow: hidden !important;
}

.lastposttitle {
        width: 92% !important;
        overflow: hidden !important;
}

It should help clear up the overflow for now until RellecT has time to sort it out himself :cool:.

GeorgeB85 12-07-2011 04:07 AM

not working correctly....forums.millenniumcapitalcorp.com

TheLastSuperman 12-07-2011 04:38 AM

Quote:

Originally Posted by GeorgeB85 (Post 2275417)
not working correctly....forums.millenniumcapitalcorp.com

Hmm try disabling the subforum management mod you have installed perhaps the one by Valter? Refresh and if it now shows correctly you know it's a conflict between the two otherwise it's something else either way you can disable/enable the one you prefer until a solution is found.

dothanhtrung 12-07-2011 05:49 AM

1 Attachment(s)
can you edt same my picture

https://vborg.vbsupport.ru/attachmen...1&d=1323240582

tarzan22 12-07-2011 06:45 AM

Quote:

Originally Posted by RellecT (Post 2275322)
I released a new version that fix a bug for who choose save css as files.


The problem here is that your categories are not actually categories..
They not "act" like a category, they act like a forum.
tomorrow I will try figure out how to apply my hack in this situation.

The problem here is that your css is stored as files..
I've fixed that, download version 1.2 which I just released.

Currently I have no demo to display, sorry

Thanks :)
I will release an update for older versions in a few days

Maybe you choose save your css as files, I fixed that in version 1.2 .
please update and see if it work now.
If not, please send me a message.


Thanks, I have placed as a category and is not going well, look
It shows the number of subjects and the last message.

http://img706.imageshack.us/img706/7...eenshot003.gif

rellect 12-07-2011 10:24 AM

Quote:

Originally Posted by dog199200 (Post 2275346)
I'm also having the same issue with everything bleeding over. I think all my widths sets are all fixed not fluid. Though where in the css does this edit exactly? I think i can do some editing on my own to fix it to match my forums needs

The hack should work in fluid width and in fixed width.
please send me a url of your forum and I'll check what the problem to fix it.

anyway, the css template is: "rellect_2_column.css"


Quote:

Originally Posted by FReeSTER (Post 2275354)
this will be great if you can manage which categories you want to show side by side instead of the entire forums. :o

Nice idea,
I'll try implement it in the future versions.


Quote:

Originally Posted by TheLastSuperman (Post 2275358)
You can also do this, please bear in mind something had to go so it looked halfway decent when using a low resolution so thread/post counts are removed and so are the forum action links i.e. subscribe/rss etc.

Edit template rellect_2_column.css and find:

Code:

.forumbit_post .forumstats li,
.forumbit_post .forumstats_2 li
{
    padding-{vb:stylevar right}: 0 !important;
}

Add this under:

Code:

.forumstats.td, .forumactionlinks.td, span.forumthreadpost {
    display:none !important;
}

.foruminfo.td, .datacontainer {
    width: 60% !important;
}

.forumdescription {
    width: 72% !important;
}

.forumlastpost.td {
    width: 40% !important;
        overflow: hidden !important;
}

.lastposttitle {
    width: 92% !important;
        overflow: hidden !important;
}

It should help clear up the overflow for now until RellecT has time to sort it out himself :cool:.

Not bad solution for who can't wait for an update,
thanks for helping :)


Quote:

Originally Posted by GeorgeB85 (Post 2275417)
not working correctly....forums.millenniumcapitalcorp.com

I am checking your forum now,
I let you know if I found the problem


Quote:

Originally Posted by tarzan22 (Post 2275448)
Thanks, I have placed as a category and is not going well, look
It shows the number of subjects and the last message.

I see..
your categories were created in a weird way.. but maybe you want them to be like that.
I'll try find a solution for this and I let you know.


All times are GMT. The time now is 06:12 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.01218 seconds
  • Memory Usage 1,759KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete