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)

TheLastSuperman 10-12-2011 11:10 PM

Quote:

Originally Posted by GaryT (Post 2256508)
I'm simply trying to figure out what CSS controls this area I have been inquiring about. I can make my own changes if I just know where to look.

Thanks

So far off the top of my head it was quite a few, I would rather release the new update then you can compare using Firebug to sort if some still exist or set the master profile css for some parts and adjust each individual style to sort the remaining misc issues.

Quote:

Originally Posted by line89 (Post 2256509)
The Styles for New/Older Mobile browsers in the admincp is on default

Set those to "None" and that should sort the issue ;).

line89 10-13-2011 12:10 AM

Setting to NO did not help, maybe its the way i install it wrong.
Since i have not found a installation description here i used following way to install your skin.

Double extracted your Skin.
Uploaded the avenger_blue folder with contents into my forum/images folder.
I know have the avenger_blue folder with its files under my forum/images folder

I then went to ACP > Download / Upload Styles
Uploaded the Fluid XML file via "EITHER upload the XML file from your computer"
Ignore Style Version YES / No Parent Style / Display Order 10 / Allow User Selection OFF (for now)
Import

ACP Response:
Updating style information for each style...

Default Style ... (Templates) (StyleVars) (Replacement Variables) (CSS) (Controls) Done.

Avenger Blue - Fluid ... (Templates) (StyleVars) (Replacement Variables) (CSS) (Controls) Done.

Again only the Forums uses the Style.

**Im not an English native speaker so forgive my English and thanks for your work.
I updated to 4.1.7 after i discovered these problem and read that you will be delivering an update. As i said earlier i can wait.

K4GAP 10-13-2011 12:27 AM

Disregard my posts, uninstalled.

line89 10-13-2011 01:42 AM

I got it enabled for CMS but i had to edit the Settings (click the Pencil on Main Section its usualy TLD/content.php/YouRSectionName/edit Page).

In the Style Drop Down i selected Board Defaults and saved. When i rechecked he Settings it was now on Inherit.

Anyway its working for now. Hope this helps others when they want to install it.

I am wondering now since I'm new to all this if it would have been wiser to install this Style as child of the Default one. Any advice would be greatly appreciated.

****update:
Clicking on a News "...read More" switches to default Style on the selected Newspage

CharlieDelta 10-13-2011 02:10 AM

Quote:

Originally Posted by GaryT (Post 2256416)
Maybe you can help me Sir,
I have white backgrounds as shown in my attachment that do not allow me to see whats there. Where do I find the code to change the background color?

Superman is correct, part of that is due to the profile customization but you can try the following stylevars;
Code:

blockbody_background
and
Code:

blocksubhead_background

mtalks 10-14-2011 02:22 AM

Very Nice professional looking skin. One of the better looking VB skins I have seen in some time. Installed and thanks for taking the time to release it. I have it installed on my 4.17 release and seems to be fine.

TheLastSuperman 10-15-2011 04:29 AM

Quote:

Originally Posted by GaryT (Post 2256508)
I'm simply trying to figure out what CSS controls this area I have been inquiring about. I can make my own changes if I just know where to look.

Thanks

In additional.css find:

Code:

/* ---------------------------New CSS Definitions------------------------------- */
Add under:

Code:

.blockrow.member_blockrow {
        color: {vb:stylevar sidebar_content_color} !important;
        -moz-border-radius:{vb:stylevar border_radius} !important;
        -webkit-border-radius: {vb:stylevar border_radius} !important;
        border-radius: {vb:stylevar border_radius} !important;
        background:{vb:stylevar sidebar_content_background} !important;
        border: 0px solid #2b3851 !important;
        _background-image: none !important;
        padding:{vb:stylevar vbcms_widget_content_padding} !important;
        -moz-box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
        -webkit-box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
        box-shadow: inset -2px 2px 2px {vb:stylevar shadow_color} !important;
}

dl.stats dt, #sidebar_container dl.stats, #sidebar_container .blockbody.userprof_content, #sidebar_container .userprof_content .time, .userprof_content .time  {
        color: {vb:stylevar sidebar_content_color} !important;
        background-color: transparent;
        background-image: none;
}

.mini_stats.blockbody.userprof_content.userprof_content_border {
        color: {vb:stylevar sidebar_content_color} !important;
}

.stats {
        color: {vb:stylevar sidebar_content_color} !important;
}

.block.userprof_editor.userprof_moduleinactive.userprof_headers {
        background: transparent !important;
        border: none !important;
}

.formcontrols.profile_editor_border {
        background: transparent !important;
        border: none !important;
}

.actionbuttons.transparent {
        background: transparent !important;
        border: none !important;
}

.member_blockrow.userprof_headers.userprof_headers_border {
        background: #222937 !important;
        border: 1px solid {vb:stylevar mid_border.borderColor} !important;
        color: rgb(205, 205, 205) !important;
}

.vm_blockrow.userprof_content.userprof_content_border {
        background: #222937 !important;
        border: 1px solid {vb:stylevar mid_border.borderColor} !important;
        color: rgb(255, 255, 255) !important;
}

That will solve most of the profile styling issues but the other areas may still revolve around profile customization. I also noticed in another thread you stated that you have all Dark styles currently disabled until you figure this out? Try that same code in those dark styles of course replacing the #222937 background colors respectively and it may solve most if not all of your CSS issues :cool:.

K4GAP 10-15-2011 08:17 PM

The white area I'm trying to get rid of affects all my dark styles not just yours. Your style is the best one I have but if I can't resolve this issue, I'm just going to have to run one of the crappy whitish styles.

I've tried everyone's suggestions.

Honestly it surprises me that I never got an answer to asking what css drives those white blocks?

I need to drop the issue before it racks my brain. I Don't need the stress.

TheLastSuperman 10-16-2011 12:12 AM

Quote:

Originally Posted by GaryT (Post 2257563)
The white area I'm trying to get rid of affects all my dark styles not just yours. Your style is the best one I have but if I can't resolve this issue, I'm just going to have to run one of the crappy whitish styles.

I've tried everyone's suggestions.

Honestly it surprises me that I never got an answer to asking what css drives those white blocks?

I need to drop the issue before it racks my brain. I Don't need the stress.

Gary... those css definitions I listed in the post above yours *hopefully* should fix your issue have you checked yet? Those are the ones you must edit although I've found another way by calling a css file in the MEMBERINFO template itself. If the CSS fix I listed does not solve your issue completely let me know via PM and I'll shoot over some instructions for a quick test in your memberinfo template using <style="text/css" etc :cool:.

setishock 10-16-2011 11:47 AM

TheLastSuperman,
Although this theme is a 8 on the Seti wowmeter, I just can't use another dark theme. Would you consider making a light theme for use on say an anime forum? I was porting over a vb3 theme called Anime Planet but dropped it due to not asking if it was ok. It appeared the coder had abandoned it but my conscience said to stop.
So in light of that my half-a**ed attempts to make a theme have been terrible at best. Would you consider making one?


All times are GMT. The time now is 01:18 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.01575 seconds
  • Memory Usage 1,758KB
  • 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
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)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