Log in

View Full Version : Navbar Gradient Background


01-28-2006, 10:00 PM
Navbar Gradient Background

What it does: Adds a gradient background to the breadcrumb area of your navbar using CSS.

Time to install: 2 Minutes
Difficulty: Easy
Templates: 1
CSS Edit: 1
Demo: http://www.sevenstring.org

Note: This only works in IE, but has a secondary tag added so that Firefox displays the standard non-gradient background. It uses DXImageTransform, which will most likely not validate. That said, this hack will remain beta until I find a better way to do it.

AdminCP -> Styles & Templates -> Style Manager -> Your Style -> Main CSS -> Additional CSS Definitions

At the bottom, add:


/***** navbar gradient *****/
.navgradient
{
filter: progid:DXImageTransform.Microsoft.Gradient(gradien tType=1,startColorStr=#startcolor,endColorStr=#end color);
background: #defaultcolor;
}


startcolor: The start of the gradient, left side.
endcolor: The finish color, right side.
defaultcolor: The color that will display, non-gradient, in other browsers.


Example:

/***** navbar gradient *****/
.navgradient
{
filter: progid:DXImageTransform.Microsoft.Gradient(gradien tType=1,startColorStr=#333333,endColorStr=#000000) ;
background: #333333;
}

In the navbar template:

Look for:

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">

Replace the LAST line with:

<td class="navgradient" width="100%">

Screenshots attached in IE (gradient showing) and Firefox (solid color).

BoYagoob
01-29-2006, 04:21 AM
Very nice

bashy
01-29-2006, 08:15 AM
Looks much smother, thank you...Installed

Snake
01-29-2006, 11:00 AM
That's pretty good. Thanks!

Guest210212002
01-29-2006, 08:42 PM
Thanks guys.

I added another screenshot of it in use on my actual site. My gradient is a bit dark due to my theme being mostly dark colors, but it should give a better idea of what this does. :)

theo
02-04-2006, 08:05 PM
i like - installed :)

Baudman
02-11-2006, 12:01 AM
nice job. Might use it once I start making changes. :)

Mastar
02-11-2006, 01:42 AM
I like it but I have a request... Can you tell me how to make it like:

Black faded into red then back into black?

So that both ends will be the same color and the middle will be different.

Guest210212002
08-02-2006, 03:16 PM
I like it but I have a request... Can you tell me how to make it like:

Black faded into red then back into black?

So that both ends will be the same color and the middle will be different.

You might be able to do that by adding an additional cell to the row and sizing them the same percentage. I'll have a go at it and post back if I can figure it out. I'm hoping to update this hack soon so that it works in FF as well.

DieselMinded
03-15-2008, 03:26 AM
How do i do this with an image ?

DieselMinded
03-15-2008, 05:21 AM
Never mind i figured it out

Jasem
04-25-2008, 07:52 AM
Thank you