vBadvanced Forums  
Go Back   vBadvanced Forums > vBadvanced Products > vBadvanced CMPS > Add-On Modules & Modifications > vBa CMPS v4.x > Modifications (version 4.x)

Reply
 
Thread Tools Display Modes
  #21  
Old 12-03-2010, 07:10 PM
ibaker's Avatar
ibaker ibaker is offline
Senior Member
 
Join Date: Feb 2008
Posts: 295
Default

Update...I have recently found that the code used in Step 3 doesn't pass W3 Standards validation so I have updated the code in Step 3 so it does pass...a very minor correction was needed.

Sorry about that...

Last edited by ibaker; 12-03-2010 at 07:18 PM.
Reply With Quote
  #22  
Old 02-08-2011, 08:13 PM
Morrow Morrow is offline
Member
 
Join Date: Oct 2004
Location: NJ
Posts: 96
Default

looks great in firefox. Can't see the changes in IE though.
Reply With Quote
  #23  
Old 02-08-2011, 08:17 PM
ibaker's Avatar
ibaker ibaker is offline
Senior Member
 
Join Date: Feb 2008
Posts: 295
Default

Quote:
Originally Posted by Morrow View Post
looks great in firefox. Can't see the changes in IE though.
The only difference between FF and IE is IE can't display rounded corners.

FF and IE should look the same except IE are square boxes.

This is what it looks like in IE8 using vb 4.1.1 and CMPS 4.1.0 - the Widget look is in the left column and the other modules use the CMPS standard look:
zzz1.jpg

Last edited by ibaker; 02-08-2011 at 08:28 PM.
Reply With Quote
  #24  
Old 03-27-2011, 08:41 PM
Mark.B Mark.B is offline
Junior Member
 
Join Date: Apr 2004
Posts: 25
Default

This is useful indeed.

Using this I have "disguised" my vBa to look a bit like the vB CMS.

http://www.bowlandcentral.com/forum/cmps_index.php
Reply With Quote
  #25  
Old 04-02-2011, 09:09 AM
stamos stamos is offline
Junior Member
 
Join Date: Dec 2005
Posts: 3
Default

stupid question, but where to put the additional.css lines?!
i do not have additional.css in my style :-/
Reply With Quote
  #26  
Old 04-14-2011, 06:38 PM
Chris-777 Chris-777 is offline
Member
 
Join Date: Jan 2006
Location: Boston, MA
Posts: 37
Default

additional.css is a vb4 template.
__________________
http://www.metalguitarist.org
Reply With Quote
  #27  
Old 04-17-2011, 04:21 AM
Destron's Avatar
Destron Destron is offline
Junior Member
 
Join Date: Dec 2009
Posts: 11
Default

How to get the rounded corners in the module boxes in Explorer 9? They show in the rest of the forum.
Reply With Quote
  #28  
Old 10-27-2011, 11:41 AM
usuyusu's Avatar
usuyusu usuyusu is offline
Junior Member
 
Join Date: Apr 2010
Posts: 20
Default

Hi guys!

Hi recently implemented this style to my vbadvanced main page, with success, but I would like to extend the same style to the rest of the forum blocks (forum headers, redirecting messages, advices, etc).

Anyone knows what CSS exactly needs to be modified to accomplish this?

Thanx a lot.

__________________
www.usuyusu.es - Users helping users (in spanish)
Reply With Quote
  #29  
Old 10-28-2011, 05:02 AM
usuyusu's Avatar
usuyusu usuyusu is offline
Junior Member
 
Join Date: Apr 2010
Posts: 20
Default

Quote:
Originally Posted by Destron View Post
How to get the rounded corners in the module boxes in Explorer 9? They show in the rest of the forum.
Read:

http://www.vbadvanced.com/forum/show...8&postcount=23

__________________
www.usuyusu.es - Users helping users (in spanish)
Reply With Quote
  #30  
Old 01-06-2012, 01:16 PM
Micky_1 Micky_1 is offline
Junior Member
 
Join Date: Jun 2008
Posts: 1
Smile

Quote:
Originally Posted by Destron View Post
How to get the rounded corners in the module boxes in Explorer 9? They show in the rest of the forum.
Hi,

add the following to your additional.css template

PHP Code:
/* VBA CMPS WIDGETS */

.vba_widget 
    
_padding:0;
    
overflowhidden;
    
display:block;
    
width100%;
    
clear:both;
    
background-color:{vb:stylevar sidebar_background.backgroundColor};
    
border:{vb:stylevar sidebar_border};
    -
moz-border-radius:{vb:stylevar border_radius};
    -
webkit-border-radius: {vb:stylevar border_radius};
    
border-radius: {vb:stylevar border_radius};
<
vb:if condition="$stylevar['textdirection'] == 'rtl'">
    -
moz-box-shadow2px 2px 2px {vb:stylevar shadow_color};
    -
webkit-box-shadow2px 2px 2px {vb:stylevar shadow_color};
    
box-shadow2px 2px 2px {vb:stylevar shadow_color};
<
vb:else />
    -
moz-box-shadow:-2px 2px 2px {vb:stylevar shadow_color};
    -
webkit-box-shadow:-2px 2px 2px {vb:stylevar shadow_color};
    
box-shadow:-2px 2px 2px {vb:stylevar shadow_color};
</
vb:if>
}

.
vba_block {
    
_margin-bottom:4px;
    
padding:{vb:stylevar vbcms_widget_block_padding};
    
background:transparent {vb:stylevar sidebar_background.backgroundImage} {vb:stylevar sidebar_background.backgroundRepeat} {vb:stylevar sidebar_background.backgroundPositionX}{vb:stylevar sidebar_background.backgroundPositionUnits} {vb:stylevar sidebar_background.backgroundPositionY}{vb:stylevar sidebar_background.backgroundPositionUnits};
    -
moz-border-radius-top{vb:stylevar left}:{vb:stylevar border_radius};
    -
moz-border-radius-top{vb:stylevar right}:{vb:stylevar border_radius};
    -
webkit-border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
    -
webkit-border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
    
border-top-{vb:stylevar left}-radius: {vb:stylevar border_radius};
    
border-top-{vb:stylevar right}-radius: {vb:stylevar border_radius};
}

.
vba_widget_header h3 {
    
color: {vb:stylevar sidebar_header_color};
    
background:transparent none;
    
padding: {vb:stylevar vbcms_widget_header_padding};
    
border:none;
    
outline:none;
    
font-size:{vb:stylevar sidebar_header_fontSize};
    
font-weightbold;
}

.
vba_widget_content {
    
color: {vb:stylevar sidebar_content_color};
    -
moz-border-radius:{vb:stylevar border_radius};
    -
webkit-border-radius: {vb:stylevar border_radius};
    
border-radius: {vb:stylevar border_radius};
    
background:{vb:stylevar sidebar_content_background};
    
border:{vb:stylevar sidebar_content_border};
    
_background-imagenone;
    
padding:{vb:stylevar sidebar_content_padding};

__________________
http://www.autofan.ch vehicles forums in German
Reply With Quote
  #31  
Old 04-07-2012, 09:13 AM
doctorsexy's Avatar
doctorsexy doctorsexy is offline
Junior Member
 
Join Date: Apr 2011
Location: UK
Posts: 6
Default

Thanks...
__________________
http://www.groovie-baby.co.uk
Reply With Quote
  #32  
Old 05-13-2012, 11:46 PM
Fiber Fiber is offline
Senior Member
 
Join Date: Jul 2004
Posts: 132
Default

Is there a version for v3?
Reply With Quote
  #33  
Old 08-22-2012, 03:53 AM
mjfutures mjfutures is offline
Junior Member
 
Join Date: Aug 2012
Posts: 2
Default

This worked great for me! www.maddenlegends.com

Brand new to vBulletin as of today and I followed your instructions ok, Thanks!
Reply With Quote
  #34  
Old 08-23-2012, 04:51 AM
zascok zascok is offline
Junior Member
 
Join Date: Jun 2012
Posts: 12
Default

Nice one , just a little modification and here we go

http://askalon.ws/cms.php
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
widgets ttnb Module & Modification Discussion & Requests 1 08-22-2011 06:25 AM
widgets ozidoggy Modifications 22 10-01-2010 02:54 PM
Widgets on vbadvance page wmlvb Module & Modification Discussion & Requests 0 09-13-2008 11:00 AM
How can I create module to show these widgets? GentleOceanWind "How Do I..." Questions 3 04-30-2008 12:06 PM
weather and fox nfl widgets StuntFactoryX Add-On Modules (version 3.x & 2.x) 13 12-12-2007 02:16 AM


All times are GMT -4. The time now is 09:09 PM.

Forums Powered by vBulletin, Copyright ©2000-2009, Jelsoft Enterprises Ltd.
Please note that vBadvanced is in no way affiliated with Jelsoft Enterprises Ltd, nor will Jelsoft be able to provide any support for our products.