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)

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?


All times are GMT. The time now is 12:31 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.01563 seconds
  • Memory Usage 1,757KB
  • 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
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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