vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=195)
-   -   CA Evo (unlimited color schemes, vbadvanced support) (https://vborg.vbsupport.ru/showthread.php?t=131631)

Masiello 03-13-2007 11:04 AM

Hi, this is one of the best soft skin I've seen about vBulletin styles, but I noticed that too, the Designer who make that great work don't consider at 99% the validation w3c and css standard, why that?

CyberAlien 03-13-2007 11:23 AM

Quote:

Originally Posted by Masiello (Post 1202408)
Hi, this is one of the best soft skin I've seen about vBulletin styles, but I noticed that too, the Designer who make that great work don't consider at 99% the validation w3c and css standard, why that?

What do you mean? Code is valid. If it doesn't validate in w3.org validator it doesn't mean code is wrong. Because of browser problems sometimes invalid code is required to make it work in some particular browser (mostly IE, sometimes Firefox).

Code is not semantically correct because of vBulletin structure. Try making a tableless template that would look like this template, work properly in threaded and hybrid modes, display correctly in all 4 major browsers and being compatible with most vbulletin hacks.

doogie88 03-14-2007 03:37 PM

How hard would it be to make an orange template?

CyberAlien 03-14-2007 03:41 PM

I won't be creating new color schemes for release any time soon, but you can pm me about custom color scheme. It won't be free though.

milsirhc 03-19-2007 07:37 AM

Hi,

I'm trying to add some stuff in the right of my message post: similiar to http://forum.hardwarezone.com/showth...6#post22837686.

Can you guide me how do I add a right column within postbit itself?

I tried creating <td> before post_message but shift the entire post content and create a new column which i dont want.

Help pls!

CyberAlien 03-19-2007 07:52 AM

in postbit_legacy on line 24 before </tr> add code similar to this:
Code:

<td rowspan="3" valign="top" class="alt1">
put here your code
</td>


milsirhc 03-19-2007 09:07 AM

Thanks for the prompt reply!!

I tried the code and it work but the bar on top shift to the left as well.

How do I make it such that the everything (the bar, + the signature + the reply, edit section) all look the same as normal but with the extra column on the right?

Here's how it looks like now: http://iamboredr.com/forum/pictures-...get-stuff.html

I have attached my postbit_legacy code, so please help me.,

Very clean and beautiful skin btw, Love it! I'll be installing the other colors too for my site! :up:

CyberAlien 03-19-2007 09:09 AM

Then move that code before next </tr>, and in first row change:
Code:

<td class="thead" style="font-weight:normal" colspan="2">
to
Code:

<td class="thead" style="font-weight:normal" colspan="3">
and
Code:

<td class="thead" style="font-weight:normal; border-left: 0px" align="$stylevar[right]">
to
Code:

<td class="thead" style="font-weight:normal; border-left: 0px" align="$stylevar[right]" colspan="2">

CyberAlien 03-19-2007 09:13 AM

Also change this:
Code:

<td class="alt2" width="100%" id="td_post_$post[postid]"; colspan="3";>
        <else />
        <td class="alt1" width="100%" id="td_post_$post[postid]">
        </if>

to this:
Code:

<td class="alt2" width="100%" id="td_post_$post[postid]" colspan="3" style="border-bottom: none;">
        <else />
        <td class="alt1" width="100%" id="td_post_$post[postid]"  style="border-bottom: none;">
        </if>

and this:
Code:

<tr>
<td class="alt2">
</td>
<td class="alt1" align="$stylevar[left]">
                <if condition="$post['signature']">

to this:
Code:

<tr>
<td class="alt2" style="background-image: none;">
</td>
<td class="alt1" align="$stylevar[left]" style="border-top: none; background-image: none;">
                <if condition="$post['signature']">


milsirhc 03-19-2007 11:24 AM

CyberAlien! You are a legend! Thanks for your assistance!!! Appreciate it.

Just one more slight adjustment.. The "edit, reply,quote" button, can they be move all the way to the right? (ie: beneath the right section) and also is there anyway to remove that left-border of the right section and add the bottom-border so below looks like a complete line?

Thanks in advance!

Now is currently like this: http://iamboredr.com/forum/video-fan...w.html#post410

MikeWalczak 03-19-2007 10:22 PM

Sorry for the dumb question but:

How do I add things to the navbar? It doesnt seem as simple as the default skin is.

CyberAlien 03-20-2007 05:40 AM

It is. You just need to edit "header" template instead of "navbar"

milsirhc 03-20-2007 06:34 AM

Quote:

Originally Posted by milsirhc (Post 1207233)

Just one more slight adjustment.. The "edit, reply,quote" button, can they be move all the way to the right? (ie: beneath the right section) and also is there anyway to remove that left-border of the right section and add the bottom-border so below looks like a complete line?

Hi Cyberalien,

You still helping me on this one?

CyberAlien 03-20-2007 06:36 AM

decrease rowspan of right column, and increase colspan of bottom-right column where buttons are

milsirhc 03-20-2007 07:56 AM

thanks! it work mate! love your work!

alawee.blawee 03-20-2007 11:11 AM

nice lovely and fast

keep on

milsirhc 03-24-2007 04:35 AM

Hi CyberAlien,

Can I ask you if I want to add a right sidebar on the forum starting in align with the first category down, where do I modify and what must I do?

Thanks!

CyberAlien 03-24-2007 06:10 AM

Create a new table in "header" template before last $spacer_open, close it in "footer" template after first $spacer_close

milsirhc 03-24-2007 10:06 PM

Hi,

I tried that with the ultimate sidebar mod but it still ended up higher than the categories.. =(

CyberAlien 03-25-2007 05:59 AM

Then start it at the end of navbar template.

milsirhc 03-25-2007 01:20 PM

Thanks for your help buddy~

I have successfully added the side bar into the skin and modified some of the components of the skin to suit my need.

Very beautiful skin and thanks once again for sharing.

DocBones 03-28-2007 03:15 AM

My first skin to load...awesome, thanks. And BTW, your patience and help with everyones questions is incredible... from all of us who were able to solve our problem by reading through the threads, THANKS!!!!

lalali 03-28-2007 11:39 AM

Thanks !

ymy 03-28-2007 01:08 PM

nice and soft skin!

THanks and *installed*

.

xLYNZx 03-28-2007 04:51 PM

Love this and installed this today and works fine on the forum but im having problems with my CMPS page, as the links dont go to the forum..can you direct me where to edit this as it didnt do it with my other style so am presuming that its style related.

Also would like to add the Quick Links to the nav bar...how would i do that?

CyberAlien 03-28-2007 05:02 PM

Check header and navbar templates.

DocBones 03-28-2007 07:14 PM

why would the dark green fourm heading bar be underneath the actual fourm?

Marc118 03-30-2007 06:14 AM

I need to change the logo.gif to logo.png, but i can not find out where you put that code for the life of me! not in css or templates!

CyberAlien 03-30-2007 06:21 AM

Look in style variables.

Quote:

Originally Posted by DocBones (Post 1214701)
why would the dark green fourm heading bar be underneath the actual fourm?

Can you post link to problem?

Marc118 03-30-2007 06:34 AM

Also I am having a problem with vbadvanced with the navbar on the CMS side. I cant seem to get the links to work correctly, I have changed them in the vbadvanced settings. When i tried to change them in the header postbit it worked on the CMS side, but then it borked the forum side navigation links.

xLYNZx 03-30-2007 01:04 PM

Quote:

Originally Posted by Marc118 (Post 1215923)
Also I am having a problem with vbadvanced with the navbar on the CMS side. I cant seem to get the links to work correctly, I have changed them in the vbadvanced settings. When i tried to change them in the header postbit it worked on the CMS side, but then it borked the forum side navigation links.

i too had this problem, i had to go and edit them in Style Manager > All Style Options (under Edit Fonts/Colours), but the logo and the login still dont work as i cant find these to edit, all the links are set to /blah.php instead of on mine /forums/blah.php

CyberAlien 03-30-2007 02:03 PM

For login form search for this in "header" template: <form action="login.php?do=login"
If logo doesn't work, you can hardcode image url in "header" template. Replace image url in this code: <img src="$stylevar[titleimage]" border="0" height="92" alt="$vboptions[bbtitle]" />

Marc118 03-30-2007 02:13 PM

When i change the links in the header template it changes the vbadcanced navi to /forums/login.php BUT it changes the navi links in for forums to /forums/forums/links.php

kaptanblack 03-30-2007 02:16 PM

Nice style.good work.thanx..

xLYNZx 03-30-2007 05:11 PM

Quote:

Originally Posted by CyberAlien (Post 1216119)
For login form search for this in "header" template: <form action="login.php?do=login"

thanks that worked...any ideas on the code to change the logo to forums/index.php? :)

xLYNZx 03-31-2007 07:27 AM

Quote:

Originally Posted by Marc118 (Post 1216126)
When i change the links in the header template it changes the vbadcanced navi to /forums/login.php BUT it changes the navi links in for forums to /forums/forums/links.php

i changed my links to be www.mysite.co.uk/forums/index.php rather than just adding the /forums/index.php ..the ones i can find to edit work just fine lol

DJ Teac 03-31-2007 09:51 PM

Nice skin, i installed all 4 colours, fixed and fluid :)

Just one question, whats the Font used on the Buttons ?
I need to edit them in PS (got a german Community) and it says i don't got the font.

CyberAlien 04-01-2007 04:52 AM

Large buttons: BauhausLightCTT
Small buttons: 04b_03

DJ Teac 04-01-2007 03:10 PM

Thank you :)

Lee M 04-01-2007 06:30 PM

Would it be possible to have this style with black bits instead of the blue/green/purple? This skin would be perfect it this was possible.


All times are GMT. The time now is 07:46 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.01802 seconds
  • Memory Usage 1,819KB
  • 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
  • (9)bbcode_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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