MyBB Community Forums

Full Version: Little nice css menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is a very nice css menu.

Version 1:
( The URL Name = Link Name )


Regular Expression:
\[cssmenu\](.*?)\[/cssmenu\]

Replacement:
<link href="http://....Link to css..../infocss.css" rel="stylesheet" type="text/css">
<div>
<ul class="svertical">
<li><a href="http://$1/">$1</a></li>
</ul></div>

Example:
[cssmenu]mybb.com[/cssmenu]

CSS Code:
ul.svertical{
width: 200px; /* width of menu */
overflow: auto;
background: black; /* background of menu */
margin: 0;
padding: 0;
padding-top: 7px; /* top padding */
list-style-type: none;
}

ul.svertical li{
text-align: right; /* right align menu links */
}

ul.svertical li a{
position: relative;
display: inline-block;
text-indent: 5px;
overflow: hidden;
background: rgb(127, 201, 68); /* initial background color of links */
font: bold 16px Germand;
text-decoration: none;
padding: 5px;
margin-bottom: 7px; /* spacing between links */
color: black;
-moz-box-shadow: inset -7px 0 5px rgba(114,114,114, 0.8); /* inner right shadow added to each link */
-webkit-box-shadow: inset -7px 0 5px rgba(114,114,114, 0.8);
box-shadow: inset -7px 0 5px rgba(114,114,114, 0.8);
-moz-transition: all 0.2s ease-in-out; /* CSS3 transition of hover properties */
-webkit-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

ul.svertical li a:hover{
padding-right: 30px; /* add right padding to expand link horizontally to the left */
color: black;
background: rgb(153,249,75);
-moz-box-shadow: inset -3px 0 2px rgba(114,114,114, 0.8); /* contract inner right shadow */
-webkit-box-shadow: inset -3px 0 5px rgba(114,114,114, 0.8);
box-shadow: inset -3px 0 5px rgba(114,114,114, 0.8);
}

ul.svertical li a:before{ /* CSS generated content: slanted right edge */
content: "";
position: absolute;
left: 0;
top: 0;
border-style: solid; 
border-width: 70px 0 0 20px; /* Play around with 1st and 4th value to change slant degree */
border-color: transparent transparent transparent black; /* change black to match the background color of the menu UL */

}

or download and save the css in your root directory
[attachment=25255]

[Image: 4f08e65f65356.png]
[Image: 4f08e68b645db.png]

-------------------------------
Version 2:
( URL + Description )


Regular Expression:
\[cssmenu2=(.*?)\](.*?)\[/cssmenu2\]

Replacement:
<link href="http://....Link to css..../infocss.css" rel="stylesheet" type="text/css">


<div>
<ul class="svertical">
<li><a href="http://$1/">$2</a></li>
</ul></div>


Example:
[cssmenu2=mybb.com]Best Forum[/cssmenu2]


HAVE FUN Big Grin
Nice. Tahnk you !
THX Cool

It works for you ?
Do you have a demo?
Yes, here is a Link to my Forum.

[url=http://#][/url] (removed)
What's the advantage of this over a normal link?
Styling ?

Is much better than a boring link, or ?

If you do not like, do not take it. Cool
So you built this for breadcrumb or something? Still not getting it's use.