vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=247)
-   -   Suite Style - Avenger Blue Style by TheLastSuperman (https://vborg.vbsupport.ru/showthread.php?t=269253)

EuroBeat2 11-21-2011 07:12 PM

1 Attachment(s)
Quote:

Originally Posted by TheLastSuperman (Post 2270404)
Hmm... try re-importing the style and the reason I say that is I installed a 4.1.8 test site last night, today I imported the same style in the .zip here and look below, it works fine.

Trust me I tried but it didn't work.


Quote:

Originally Posted by TheLastSuperman (Post 2270404)
What OTHER modifications do you have installed, or it might be better if I ask, what modifications on your site are not by Paul?

So far the problem appeared only in Paul modifications: Members Who Posted Today 4.1.8.0, Members Who Visited Today 4.1.8.0 and Who Has Read Thread - ver 4.1.8.0 (Please see attached pic for first two modes). These modifications does not affect other styles on my site.

Also have issues and previously stated related to User page where the basic info are white square. I disabled all plugins but it still exists. (pics attached as well).

"Array" issue still needs to be resolved. See if you have somebody's birthday today if it is displayed correctly.

Thank you for looking into it.

EB

TheLastSuperman 11-21-2011 07:40 PM

Quote:

Originally Posted by EuroBeat2 (Post 2270446)
Trust me I tried but it didn't work.




So far the problem appeared only in Paul modifications: Members Who Posted Today 4.1.8.0, Members Who Visited Today 4.1.8.0 and Who Has Read Thread - ver 4.1.8.0 (Please see attached pic for first two modes). These modifications does not affect other styles on my site.

Also have issues and previously stated related to User page where the basic info are white square. I disabled all plugins but it still exists. (pics attached as well).

"Array" issue still needs to be resolved. See if you have somebody's birthday today if it is displayed correctly.

Thank you for looking into it.

EB

Well DUH on me, I didn't change my birthday to today and check :p.

Edit template FORUMHOME and find:

Code:

                        <div id="wgo_birthdays" class="wgo_subblock section">
                                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/birthday.png" alt="{vb:rawphrase todays_birthdays}" />{vb:rawphrase todays_birthdays}</h3>
                                <ol class="commalist">
                                        {vb:raw birthdays}
                                </ol>
                        </div>

Replace with:

Code:

                        <div id="wgo_birthdays" class="wgo_subblock section">
                                <h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/birthday.png" alt="{vb:rawphrase todays_birthdays}" />{vb:rawphrase todays_birthdays}</h3>
                                <ol class="commalist">
                                        <vb:each from="birthdays" value="row">
                                                <li><a href="{vb:link member, {vb:raw row}}">{vb:raw row.username}</a><vb:if condition="$row['age']"> ({vb:raw row.age})</vb:if>{vb:raw row.comma}</li>
                                        </vb:each>
                                </ol>
                        </div>

Save and call it a day :cool:.

Now for the profile style issue, edit template MEMBERINFO, look near the top and you'll notice I call some CSS directly, scroll to the bottom of that css and find:

Code:

.userprof_moduleinactive {
        background: transparent !important;
        background-color: transparent !important;
        border: 1px solid #32415f !important;
        color: rgb(195, 195, 195) !important;
}

</style>

Add this as shown:

Code:

.userprof_moduleinactive {
        background: transparent !important;
        background-color: transparent !important;
        border: 1px solid #32415f !important;
        color: rgb(195, 195, 195) !important;
}

.stats.userprof_content.userprof_content_border, .blockbody.userprof_content.userprof_content_border {
        background-color: transparent !important;
        border: none !important;
}


</style>

Done and done!

TheLastSuperman 11-21-2011 08:00 PM

Updated on 11/21/2011

- Updated for compatibility with vBulletin 4.1.8, if you use 4.1.8 please download and install the .zip labeled vB4.1.8 otherwise for vBulletin 4.1.4 through 4.1.7 please use the .zip w/ the vB4.1.8 in the filename ;).
- Corrected "Array" template issue, required revision of template FORUMHOME.
- Corrected white background in member profiles, required revision of MEMBERINFO.

Markos 11-21-2011 08:40 PM

1 Attachment(s)
hi mate the last post isn't inline on the update showing in attached image

and is there a way i can decrees the gap between the logo and the navbar showing in pic ??

and my post input box is still white showing in attached pic

TheLastSuperman 11-21-2011 08:55 PM

Quote:

Originally Posted by Markos (Post 2270482)
hi mate the last post isn't inline on the update showing in attached image

and is there a way i can decrees the gap between the logo and the navbar showing in pic ??

and my post input box is still white showing in attached pic

- On the first image, what's the URL for that? When I view where I think that screenshot is from I see the info fine... looks odd though so lemme know the url so I can have a quick look ;).
- Second image, adjusting that is in the modification description above look for:

Quote:

Q. The style has shifted after I changed the logo... how do I fix this?
A. If you have a issue w/ the header i.e. you placed a much larger or smaller logo than the one included it will "shift" the style in a sense, to fix this edit vbulletin-chrome.css and find:
The info is right after that, code to edit and all.

- Third image, inputs for those areas are meant to be white, intentionally although in between one release I did tinker and will update accordingly on the next release making them match the style.

Markos 11-21-2011 08:58 PM

thanks for the fast reply

http://www.scottishexoticreptilesfor...hp?styleid=156

EuroBeat2 11-21-2011 09:19 PM

1 Attachment(s)
Quote:

Originally Posted by TheLastSuperman (Post 2270465)
Updated on 11/21/2011

- Updated for compatibility with vBulletin 4.1.8, if you use 4.1.8 please download and install the .zip labeled vB4.1.8 otherwise for vBulletin 4.1.4 through 4.1.7 please use the .zip w/ the vB4.1.8 in the filename ;).
- Corrected "Array" template issue, required revision of template FORUMHOME.
- Corrected white background in member profiles, required revision of MEMBERINFO.

Thank you. We are getting there. Those two issues in fact are fixed. Still outstanding is the issue of double commas, and one more tab for USER PAGE. The tab in question is "Friends". Please look at the picture. First is your style, second is default style.

EB

Markos 11-21-2011 09:30 PM

1 Attachment(s)
just noticed something else in the profile the Welcome, Mark, notifications, My Profile, Settings, Log Out is over the top of my buttons showing in pic

TheLastSuperman 11-21-2011 11:34 PM

Quote:

Originally Posted by Markos (Post 2270486)

Quote:

Originally Posted by EuroBeat2 (Post 2270501)
Thank you. We are getting there. Those two issues in fact are fixed. Still outstanding is the issue of double commas, and one more tab for USER PAGE. The tab in question is "Friends". Please look at the picture. First is your style, second is default style.

EB

Quote:

Originally Posted by Markos (Post 2270506)
just noticed something else in the profile the Welcome, Mark, notifications, My Profile, Settings, Log Out is over the top of my buttons showing in pic

I'll have another update out by tomorrow best I can do, as for the double commas Eurobeat2 I'm completely at a loss so no fix is planned atm.

EuroBeat2 11-22-2011 12:14 AM

1 Attachment(s)
Quote:

Originally Posted by TheLastSuperman (Post 2270531)
I'm completely at a loss so no fix is planned atm.

Paul M suggestion was: Off the top of my head, I dont recall, look for content: in your rules. Note that removing it could affect other areas of your custom style. Maybe it would help.

EDIT: I also noticed double comma problem in USER MENU under "Recent Visitors". Picture included.

Thank you for all your hard work.

EB


All times are GMT. The time now is 08:12 AM.

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.01599 seconds
  • Memory Usage 1,765KB
  • 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
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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