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 - Grayfolio-Package 4.2 [SKINION] (https://vborg.vbsupport.ru/showthread.php?t=245720)

xxEarluxx 11-30-2012 10:03 PM

Quote:

Originally Posted by Jgamer90 (Post 2385113)
I installed it but the logo and status icons don't show up. I don't know what I did wrong I put it in the root.

Might be an issue with forum path. Is your forum installed in your sites root .....?

Jgamer90 12-01-2012 02:58 PM

Yes

xxEarluxx 12-01-2012 05:40 PM

Quote:

Originally Posted by Jgamer90 (Post 2387341)
Yes

OK send me a link so I can take a look. You might have uploaded images to wrong folder.

Jgamer90 12-01-2012 06:54 PM

<a href="http://talknba.com/forum.php?styleid=8" target="_blank">http://talknba.com/forum.php?styleid=8</a>

mattltm 03-29-2013 01:07 PM

Installed.

Changed it slightly for a fixed width and centred on the page but looks great.

Nice work, thanks.

RedDevil 04-19-2013 08:51 AM

1 Attachment(s)
Seems to have an issue now since update to 4.2.1 will this be fixed please.

Or do you know what the cause is, only affecting this style on site for some reason.

Nirjonadda 04-20-2013 08:04 AM

Same issue on here,Please update for work on 4.2.1

Nirjonadda 04-21-2013 04:22 PM

Developer Last Online: Apr 2013,Last Activity: 02 Apr 2013 04:54

calvinphan 04-29-2013 12:23 AM

Hello,

Do you have the updated version for V 4.2.1 ? After upgrading my forum to V 4.2.1, the texts got out of place.

Thank you.

Sincerely,
Calvin

Wirral.Talk 05-06-2013 11:25 AM

I really want to use this but the navbar is overlapping :(

Bob Meta 06-26-2013 05:14 PM

1 Attachment(s)
Thank you for making this style! My main question is, is there a way to purchase a branding free version of this style? I could not find it on Skinion.net.

I also have two very minor issues that are bothering me. To the left of my navbar tabs, there is a small bit of padding that is causing my navbar tabs to shift slightly to the right. Where should I look to remove this padding? I have attached a screenshot below.

The second issue is that I am using the grey style, but the background border behind my forums is still a very light grey color, unlike the very dark, almost black color shown in the screenshot in the OP.

vB 4.2.1

Any help on where to change these minor style issues would be much appreciated. Thanks!

karani24 08-09-2013 10:09 PM

Have the same problem. But I really want to use the navbar overlap.

karani24 08-10-2013 02:42 PM

Addinoall.css

Code:

}
.navtabs .popupbody li a:hover {
    background-color:  {vb:stylevar blockfoot_background.backgroundColor};
    color: {vb:stylevar linkhover_color};
}
.navtabs li.selected .popupbody li > a {
        color: {vb:stylevar navbar_link_color};
}
.toplinks ul.isuser .notifications .popupbody li a {
    border-top: medium none;
    color: {vb:stylevar navbar_link_color};
}
.navtabs ul {
    background: {vb:stylevar navbar_background};
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    top: 25px;
    height: 32px;
    border-top: none;
}
.navtabs li.selected a.navtab {
    padding-top: 0;
    top: 0;
}
.navtabs li a.navtab:hover {
        background:{vb:stylevar navbar_tab_background};


rhody401 09-29-2013 11:03 AM

If the author is reading this, your site shows 'HaCked By RBG HomS'

Probably the /install folder exploit from last month.

You don't see it until you click FORUMS.

brad heffernan 10-18-2013 06:31 PM

1 Attachment(s)
hi this is my favorite style been using it for a long time but since the upgrade to 4.2.2 i am having an issue with the style, the navlinks overlap the navbar buttons. how would i fix this problem.
Other than that issue above everything else seems to be working fine.

Image attached

Any help will be greatly appreciated
Thanks

nxtgen 11-19-2013 09:42 PM

Pretty sure the dev is done supporting this theme.. and their site for that matter.

w4term4n 12-07-2013 01:33 PM

Quote:

Originally Posted by brad heffernan (Post 2454451)
hi this is my favorite style been using it for a long time but since the upgrade to 4.2.2 i am having an issue with the style, the navlinks overlap the navbar buttons. how would i fix this problem.
Other than that issue above everything else seems to be working fine.

Image attached

Any help will be greatly appreciated
Thanks

I have exactly the same problem!. > _ <

rhialy 12-21-2013 11:54 PM

Just go into your XML file and search for:

".navtab ul"
here add the following css - command:
padding-top: 25px;

it should look like this:
Code:

.navtabs ul {
/*      background: {vb:stylevar navbar_background.backgroundColor}; */
        position:absolute;
        padding-top: 25px;
        top:{vb:math {vb:stylevar navbar_tab_size.height}px + {vb:stylevar navbar_padding.paddingTop}};
        {vb:stylevar left}:0px;
        width:100%;
        border-top:{vb:stylevar navbar_tab_border};
        -moz-border-radius-bottom{vb:stylevar left}:{vb:stylevar border_radius};
        -moz-border-radius-bottom{vb:stylevar right}:{vb:stylevar border_radius};
        -webkit-border-bottom-{vb:stylevar left}-radius:{vb:stylevar border_radius};
        -webkit-border-bottom-{vb:stylevar right}-radius:{vb:stylevar border_radius};
        margin-{vb:stylevar right}:-{vb:stylevar navbar_tab_size.width}px;


/* This is to fix RTL menu issue under Opera */
        direction:ltr;
}

then search for:

".navtabs li a.navtab"
here add the following css - command:
position: relative;
z-index: 11;

it should look like this:
Code:

.navtabs li a.navtab {
        border-top: {vb:stylevar navbar_tab_bevel};
        border-{vb:stylevar left}: {vb:stylevar navbar_tab_bevel};
        display:block;
        background:{vb:stylevar navbar_tab_background};
        _background-image:none;
        min-width:{vb:math {vb:stylevar navbar_tab_size.width} - 2 * {vb:stylevar padding}};
        width:auto !important;
        width:{vb:math {vb:stylevar navbar_tab_size.width} - 2 * {vb:stylevar padding}};
        _min-width:{vb:math {vb:stylevar navbar_tab_size.width} - 0.5 * {vb:stylevar padding}};
        _width:auto !important;
        _width:{vb:math {vb:stylevar navbar_tab_size.width} - 0.5 * {vb:stylevar padding}};
        text-align:center;
        color: {vb:stylevar navbar_tab_color};
        font:{vb:stylevar navbar_tab_font};
        text-decoration:none;
        line-height:{vb:stylevar navbar_tab_size.height}px;
        position: relative;
        z-index: 11;

}

this should fix the problem.

nxtgen 12-23-2013 01:52 PM

Quote:

Originally Posted by rhialy (Post 2469930)
Just go into your XML file and search for:

".navtab ul"
here add the following css - command:
padding-top: 25px;

it should look like this:
Code:

.navtabs ul {
/*      background: {vb:stylevar navbar_background.backgroundColor}; */
        position:absolute;
        padding-top: 25px;
        top:{vb:math {vb:stylevar navbar_tab_size.height}px + {vb:stylevar navbar_padding.paddingTop}};
        {vb:stylevar left}:0px;
        width:100%;
        border-top:{vb:stylevar navbar_tab_border};
        -moz-border-radius-bottom{vb:stylevar left}:{vb:stylevar border_radius};
        -moz-border-radius-bottom{vb:stylevar right}:{vb:stylevar border_radius};
        -webkit-border-bottom-{vb:stylevar left}-radius:{vb:stylevar border_radius};
        -webkit-border-bottom-{vb:stylevar right}-radius:{vb:stylevar border_radius};
        margin-{vb:stylevar right}:-{vb:stylevar navbar_tab_size.width}px;


/* This is to fix RTL menu issue under Opera */
        direction:ltr;
}

then search for:

".navtabs li a.navtab"
here add the following css - command:
position: relative;
z-index: 11;

it should look like this:
Code:

.navtabs li a.navtab {
        border-top: {vb:stylevar navbar_tab_bevel};
        border-{vb:stylevar left}: {vb:stylevar navbar_tab_bevel};
        display:block;
        background:{vb:stylevar navbar_tab_background};
        _background-image:none;
        min-width:{vb:math {vb:stylevar navbar_tab_size.width} - 2 * {vb:stylevar padding}};
        width:auto !important;
        width:{vb:math {vb:stylevar navbar_tab_size.width} - 2 * {vb:stylevar padding}};
        _min-width:{vb:math {vb:stylevar navbar_tab_size.width} - 0.5 * {vb:stylevar padding}};
        _width:auto !important;
        _width:{vb:math {vb:stylevar navbar_tab_size.width} - 0.5 * {vb:stylevar padding}};
        text-align:center;
        color: {vb:stylevar navbar_tab_color};
        font:{vb:stylevar navbar_tab_font};
        text-decoration:none;
        line-height:{vb:stylevar navbar_tab_size.height}px;
        position: relative;
        z-index: 11;

}

this should fix the problem.

That does fix the issue. Thanks!! :up:

Baghira 01-16-2014 06:15 PM

Hello,

I tried this code, and it solved the problem for the overlapping...
but every first item of every submenu has a padding (left).. how can I fix this?

RedDevil 02-03-2014 09:56 AM

Its a shame the coder no longer supports this its an excellent style, evry update now of VB draws closer to having to loose it forever.

Pity no other coders not able to assist

K4GAP 02-03-2014 11:13 PM

Quote:

Originally Posted by RedDevil (Post 2478762)
Its a shame the coder no longer supports this its an excellent style, evry update now of VB draws closer to having to loose it forever.

Pity no other coders not able to assist

It states, Not Supported. Coders here have quite a work load and they don't get paid for what they do. It's like a lot of places, "Take a number and we'll get to you".

viliksar1 02-17-2014 07:18 AM

Quote:

Originally Posted by RedDevil (Post 2478762)
Its a shame the coder no longer supports this its an excellent style, evry update now of VB draws closer to having to loose it forever.

Pity no other coders not able to assist

Developer website does not work. Who knows how he can be contacted?

apleschu 09-30-2014 01:38 PM

I really like this style, but on 4.2.2 pl1 the nabber is unusable. too bad, I would have loved to use it

xxEarluxx 10-30-2014 08:27 PM

Quote:

Originally Posted by apleschu (Post 2517069)
I really like this style, but on 4.2.2 pl1 the nabber is unusable. too bad, I would have loved to use it

I'll be releasing an update in the next couple days for 4.2.0, 4.2.1, and 4.2.2. Stay Tuned.

Nirjonadda 10-31-2014 04:37 PM

Quote:

Originally Posted by xxEarluxx (Post 2520670)
I'll be releasing an update in the next couple days for 4.2.0, 4.2.1, and 4.2.2. Stay Tuned.

Good to see you are here ! Please also directly update for 4.2.3 :)

xxEarluxx 10-31-2014 04:48 PM

Quote:

Originally Posted by Nirjonadda (Post 2520780)
Good to see you are here ! Please also directly update for 4.2.3 :)

I will add vbulletin 4.2.3 to the list aswell.

gsmlover4u 12-19-2014 12:42 AM

unable to install on vb 4.2.2
any way or update to install on vb 4.2.2

DGrey2011 01-12-2015 09:31 PM

The link for Black version doesn't work. :(

Is there a Blackfolio version for vBulletin 4.2.2?

Pakblogger 11-01-2015 04:18 PM

very nice


All times are GMT. The time now is 02:03 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.01778 seconds
  • Memory Usage 1,817KB
  • 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
  • (5)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (30)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