Members   Search      Help    Register    Login    Home
Home » Support Forums for PMBT 2.X » General Help for 2.X » Modifying the Navigation Menu
Modifying the Navigation Menu [message #4449] Mon, 12 July 2010 04:45 Go to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
I am trying to get my Navigation Menu to look and act like my Navigation menu on my wordpress site (so I can seamlessly link the two). I've had much progress so far, but am not completely there. Any help would be appreciated. The Wordpress side of the site is located at www.currentperspectives.org and the torrent side is at www.currentperspectives.org/torrents/torrents.php

If you take a look at them it will become clear what I am trying to do and how far I've gotten (ignore the logo and blue top bar as I am not done with that yet).

Anyway, I can upload any necessary files.

Thanks so much in advance.
Re: Modifying the Navigation Menu [message #4450 is a reply to message #4449] Mon, 12 July 2010 10:08 Go to previous messageGo to next message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
change nav menu in main.php to
		echo "<div id=\"topnav\">
				<ul>\n";
					echo(preg_match("/index.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"index.php\">Home</a>":"<li class=\"page_item page-item-30\"><a href=\"index.php\">Home</a></li>";
					echo(preg_match("/torrents.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"torrents.php\">Torrents</a>":"<li class=\"page_item page-item-30\"><a href=\"torrents.php\">Torrents</a></li>";
					if($forumshare)echo(preg_match("/phpBB.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"phpBB.php\">Forums</a></li>":"<li class=\"page_item page-item-30\"><a href=\"phpBB.php\">Forums</a></li>";
					echo(preg_match("/chat.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"chat.php\">Chat</a></li>":"<li class=\"page_item page-item-30\"><a href=\"chat.php\">Chat</a></li>";
					if($user->user)echo(preg_match("/user.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"user.php?op=profile&id=" . $user->id ."\">My Profile</a></li>":"<li class=\"page_item page-item-30\"><a href=\"user.php?op=profile&id=" . $user->id ."\">My Profile</a></li>";
					echo(preg_match("/donate.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a onClick=\"javascript:urchinTracker ('/donate/navbar');\">Donate<span style='margin-left: 4px; vertical-align: super; color:#AA0000; font-family:sans-serif; font-weight: bolder; font-size: 6pt;'>NOW</span></a></li>":"<li class=\"page_item page-item-30\"><a href=\"donate.php\" onClick=\"javascript:urchinTracker ('/donate/navbar');\">Donate<span style='margin-left: 4px; vertical-align: super; color:#AA0000; font-family:sans-serif; font-weight: bolder; font-size: 6pt;'>NOW</span></a></li>";
					if(($user->user OR $upload_level == "all"))echo(preg_match("/upload.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"upload.php\">Upload</a></li>":"<li class=\"page_item page-item-30\"><a href=\"upload.php\">Upload</a></li>";
					if($user->user)echo(preg_match("/memberslist.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"memberslist.php\">Members</a></li>":"<li class=\"page_item page-item-30\"><a href=\"memberslist.php\">Members</a></li><br />";
					if($user->user)echo(preg_match("/helpdesk.php/",$_SERVER["PHP_SELF"])) ? "<li class=\"page_item page-item-2 current_page_item\"><a href=\"helpdesk.php\">Help Desk</a></li>":"<li class=\"page_item page-item-30\"><a href=\"helpdesk.php\">Help Desk</a></li>";

				echo "</ul>
			</div>";

and add to .css file
#topnav, #blog_title, #archive_wrapper, #secondary_nav_content {
	width: 80em;
	margin: 0 auto;
	}
	
#topnav {
	margin-top: 3em;
	padding: 0 0 1em 0;
	}

#topnav ul {
	list-style-type: none;
	list-style-position: outside;
	list-style-image: none;
	margin: 10px auto 0 10px;
	padding: 1em 0;
	}

#topnav li {
	float: left;
	display: inline;
	letter-spacing: 2px;
	}

#topnav ul li > ul {
	display: none;
}
#topnav, #footer, #topnav ul {
	background-color: #000;
	color: #FFFAEF;
	}
.current_page_item a, .current a {
	color: #DE7D0D;
	}


http://a.imageshack.us/img831/5562/mybikes.png
Re: Modifying the Navigation Menu [message #4453 is a reply to message #4450] Mon, 12 July 2010 22:56 Go to previous messageGo to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
Implementing that code in my main.php and style.css files just makes a protruding bulge on my navbar with all orange, lowercase text.

Wouldn't you need to see my main.php and style.css files first?
Re: Modifying the Navigation Menu [message #4454 is a reply to message #4453] Tue, 13 July 2010 20:07 Go to previous messageGo to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
Could anyone please help?
Re: Modifying the Navigation Menu [message #4455 is a reply to message #4449] Tue, 13 July 2010 23:15 Go to previous messageGo to next message
Daffy is currently offline Daffy  France
Messages: 359
Registered: October 2009
Location: uk
Releaser

add your main.php

Re: Modifying the Navigation Menu [message #4456 is a reply to message #4455] Wed, 14 July 2010 01:12 Go to previous messageGo to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
I've attached my style.css file and main.php for pbpMyBitTorrent (the theme is a modified default pmbt theme). I also included the style.css file for my Wordpress site (theme is a modified Ocular Professor).

Thanks in advance
  • Attachment: files.rar
    (Size: 13.64KB, Downloaded 32 times)
Re: Modifying the Navigation Menu [message #4469 is a reply to message #4456] Thu, 15 July 2010 18:48 Go to previous messageGo to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
Any information?
Re: Modifying the Navigation Menu [message #4471 is a reply to message #4469] Thu, 15 July 2010 20:13 Go to previous messageGo to next message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
sorry was out of town I well take a look as soon as I can

http://a.imageshack.us/img831/5562/mybikes.png
Re: Modifying the Navigation Menu [message #4474 is a reply to message #4471] Thu, 15 July 2010 20:56 Go to previous messageGo to next message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
No problem! Thanks for all the help!
Re: Modifying the Navigation Menu [message #4484 is a reply to message #4474] Sun, 18 July 2010 05:03 Go to previous messageGo to next message
joeroberts is currently offline joeroberts  United States
Messages: 1971
Registered: June 2006
Location: U.S.A
Releaser
Da HacKer
replace your tracker css with this one
/*
*----------------------------phpMyBitTorrent V 2.0-----------------------------*
*--- The Ultimate BitTorrent Tracker and BMS (Bittorrent Management System) ---*
*--------------   Created By Antonio Anzivino (aka DJ Echelon)   --------------*
*-------------               http://www.p2pmania.it               -------------*
*------------ Based on the Bit Torrent Protocol made by Bram Cohen ------------*
*-------------              http://www.bittorrent.com             -------------*
*------------------------------------------------------------------------------*
*------------------------------------------------------------------------------*
*--   This program is free software; you can redistribute it and/or modify   --*
*--   it under the terms of the GNU General Public License as published by   --*
*--   the Free Software Foundation; either version 2 of the License, or      --*
*--   (at your option) any later version.                                    --*
*--                                                                          --*
*--   This program is distributed in the hope that it will be useful,        --*
*--   but WITHOUT ANY WARRANTY; without even the implied warranty of         --*
*--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          --*
*--   GNU General Public License for more details.                           --*
*--                                                                          --*
*--   You should have received a copy of the GNU General Public License      --*
*--   along with this program; if not, write to the Free Software            --*
*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA --*
*--                                                                          --*
*------------------------------------------------------------------------------*
*------              ©2005 phpMyBitTorrent Development Team              ------*
*-----------               http://phpmybittorrent.com               -----------*
*------------------------------------------------------------------------------*
*-----------------   Sunday, September 14, 2008 9:05 PM   ---------------------*
*/
html {
font-size : 10pt;
}
.style3{
font-size : 10pt;
}
.shoutbox{
font-size:12px;
  margin-right: 5px;
  display: inline;
  float: left;
  width: 100%;
  height: 150px;
  overflow:auto;
}
.shout_time {
color:#FF0000;
}
#shout_textarea{
clear: right;
  width: 100%;
  height: 20px;
}

.shoutbox_bold{
  font-weight: bold;
}
  body  {
font-family : sans-serif;
background : url(pics/backgroundblue.png);
font-size : 15px;
position:relative;
}
.highlight {
font-size : 14px;
font-weight : bold;
color : #0000cc;
}
.bubble {
width : 578px;
clear : both;
margin : 20px auto 40px;
}
table.peertable{
background-color:#FFFFFF;
}
table.filelist{
background-color:#FFFFFF;
}
p.donation{
font-size:15px;
}
table.table_table{
font-size:14px;
}
.bubble-top {
height : 10px;
background : url(pics/bubble-top.png);
}
.bubble-bg {
font-size : 12px;
font-family : Courier;
padding : 10px 20px;
background : url(pics/bubble-bg.png);
}
span.bubble-date {
position : relative;
color : #989898;
padding : 0;
top : 10px;
font-size : 6pt;
}
.bubble-bottom-right {
height : 19px;
padding-right : 10px;
margin-bottom : 5px;
background : url(pics/bubble-bottom-right.png);
background-repeat : no-repeat;
text-align : right;
}
.bubble-bottom-left {
height : 19px;
padding-left : 10px;
margin-bottom : 5px;
background : url(pics/bubble-bottom-left.png);
background-repeat : no-repeat;
text-align : left;
}
.bubble_sub-left {
text-align : center;
margin-right : 318px;
}
.bubble_sub-right {
text-align : center;
margin-left : 318px;
}
#pmbtwrap {
width : 950px;
margin : 10px auto;
/*margin:'margin-top' 'margin-right' 'margin-bottom' 'margin-left'*/
text-align : left;
}
div.mainbox {
	background-color:#ffffff;
	font-size: 6pt; 
	/*font-weight:bold;*/
	
	color: #1C1C1C;
	/* background-image:url(/img/bg.jpg); */
	border:1px solid #999;
	padding:1em;
	margin-left: 1em;
	margin-right: 0.5em;
	margin-bottom: 1.5em;
	-moz-border-radius:8px;}
#mainbox {
background-color : #ffffff;
font-size : 6pt;
color : #1c1c1c;
border : 1px solid #999;
padding : 1em;
margin-left : 1em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#messagebox {
font-family : sans-serif;
background-color : #efebe2;
text-align : center;
font-size : 10pt;
padding : 5px 15px 20px 100px;
color : #1c1c1c;
background-image : url(pics/alert.png);
background-position : 30px center;
background-repeat : no-repeat;
min-height : 70px;
border : 1px solid #999;
margin-left : 0.5em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#successbox {
font-family : sans-serif;
background-color : #f2fff0;
text-align : center;
font-size : 10pt;
padding : 5px 15px 20px 100px;
color : #1c1c1c;
background-image : url(pics/success.png);
background-position : 30px center;
background-repeat : no-repeat;
min-height : 70px;
border : 1px solid #999;
margin-left : 0.5em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#errorbox {
font-family : sans-serif;
background-color : #fff0f0;
font-size : 10pt;
text-align : center;
padding : 5px 15px 20px 100px;
color : #1c1c1c;
background-image : url(pics/error.png);
background-position : 30px center;
background-repeat : no-repeat;
min-height : 70px;
border : 1px solid #980000;
margin-left : 1em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#newsbox {
font-family : sans-serif;
background-color : #ffffd5;
text-align : center;
font-size : 10pt;
padding : 4px 0 0 80px;
color : #757576;
background-image : url(pics/alert_mini.png);
background-position : 80px center;
background-repeat : no-repeat;
border : 1px solid #999;
min-height : 26px;
margin-left : 0.5em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#emailbox {
font-family : sans-serif;
background-color : #ffffff;
text-align : center;
font-size : 12pt;
padding : 4px 0 0 80px;
color : #757576;
background-image : url(pics/email.png);
background-position : 80px center;
background-repeat : no-repeat;
border : 1px solid #999;
min-height : 26px;
margin-left : 0.5em;
margin-right : 0.5em;
margin-bottom : 1.5em;
}
#theme-header {
height : 20px;
clear : both;
background : url(pics/topblack.png) repeat-y 0 0;
}
#theme-body {
background : url(pics/bodybgblue.png) repeat-y 0 0;
padding-right : 0;
padding-left : 0;
}
#theme-footer {
height : 20px;
background : url(pics/bottomblack.png) repeat-y 0 0;
}
#leftcolumn {
width : 174px;
float : left;
margin-left : 7px;
padding-right : 0;
background-color : #f2f2f2;
}
#rightcolumn {
width : 754px;
float : left;
padding-left : 0;
padding-right : 0;
/*background-color : #f2f2f2;*/
}
#donationbar-background {
position : relative;
bottom : 1px;
right : 1px;
background : url(pics/donations_bg.png);
background-repeat : no-repeat;
height : 18px;
width : 188px;
}
.search_cloud{
line-height: 2em;
}
#searchcloud {
color : #980000;
}
#searchcloud a:link {
text-decoration : none;
}
.smallest {
font-size : 1em;
color : #580000;
}
.small {
font-size : 1.5em;
color : #680000;
}
.medium {
font-size : 2em;
color : #780000;
}
.large {
font-size : 2.5em;
color : #880000;
}
.largest {
font-size : 3em;
color : #980000;
}
span.donationsin {
font-family : sans-serif;
font-size : 12pt;
color : #265514;
position : relative;
float : left;
right : 5px;
bottom : 25px;
}
span.donationsgoal {
position : absolute;
float : right;
right : 17px;
top : 2px;
font-weight : bold;
font-size : 8pt;
color : #555556;
}
span.donationsthanks {
position : absolute;
right : 75px;
font-weight : bold;
font-size : 8pt;
color : #ffffff;
}
span.mainbox-title {
text-align : center;
display : block;
margin : 0 auto 10px;
font-weight : bold;

font-size : 8pt;
#color : #980000;
color : #101010;
}
span.messagebox-title {
text-align : center;
display : block;
margin : 0 auto 10px;
font-weight : bold;
font-size : 8pt;
#color : #980000;
color : #de7d0d;
}
span.successbox-title {
text-align : center;
display : block;
margin : 5px auto 10px;
font-weight : bold;
font-size : 8pt;
#color : #980000;
color : #de7d0d;
}
span.errorbox-title {
text-align : center;
display : block;
margin : 5px auto 10px;
font-weight : bold;
font-size : 8pt;
#color : #980000;
color : #de7d0d;
}
form {
color : #808080;
font-weight : bold;
margin-top : 5px;
margin-bottom : 5px;
}
font.small {
font-size : 8pt;
color : #000000;
}
p {
font-size : 10pt;
text-indent : 0;
line-height : 100%;
word-spacing : 0;
margin : 0;
}
p.footer {
font-size : 8pt;
#color : #000000;
color : #de7d0d;
text-align : center;
#text at the bottom of the page
}
p.title {
font-size : 9pt;
font-variant : small-caps;
}
p.description {
font-size : 8pt;
font-weight : normal;
line-height : 120%;
}
p.file {
font-size : 7pt;
line-height : 120%;
color : #757576;
}
p.nfo {
font-family : OCR A Extended;
font-size : 8pt;
color : #000000;
text-align : justify;
  width: 500px;
  height: 150px;
  overflow:auto;
}
p.errortext {
text-align : left;
display : block;
font-size : 10pt;
text-align : center;
}
p.whitelist {
color : #00ff00;
}
p.blacklist {
color : #ff0000;
}
p.granted {
color : #00ff00;
}
p.denied {
color : #ff0000;
}
p.extrasmall {
font-size : 6pt;
}
span.h2lookalike {
font-size : 12pt;
color : #757576;
}
h1 {
font-size : 10pt;
color : #000000;
}
h1.title {
text-align : center;
}
h1.details {
font-size : 16pt;
text-align : center;
font-weight : normal;
color : #1c1c1c;
margin : 5px;
}
h1.search {
font-size : 12pt;
color : #757576;
text-align : center;
font-weight : bold;
}
h2 {
font-size : 12pt;
color : #757576;
}
h2.title {
text-align : center;
}
h2.details {
text-align : center;
font-family : sans-serif;
font-size : 14pt;
font-weight : bold;
color : #555556;
margin : 0;
}
h3 {
font-size : 14pt;
color : #000000;
}
h3.title {
text-align : center;
}
hr {
background-color : #999;
color : #999;
border : #999;
height : 1px;
}
iframe {
border : none;
}
img {
border : 0;
}
font.large {
font-size : 10pt;
color : #000000;
}
font.heading {
font-size : 10pt;
color : #000000;
font-weight : bold;
}
span.admin {
font-size : 8pt;
font-weight : bold;
color : #aa0000;
text-decoration : none;
}
span.mod {
font-size : 8pt;
font-weight : bold;
color : #53b54f;
text-decoration : none;
}
span.premium {
font-size : 8pt;
font-weight : bold;
color : #cecc46;
text-decoration : none;
}
span.user {
font-size : 8pt;
font-weight : bold;
color : #000000;
text-decoration : none;
}
table.main {
background-color : #ffffff;
}
table.bg {
background-color : #093656;
}
table.sub {
background-color : #000000;
}
table.theme {
background-color : #f2f2f2;
}
table.content {
border : 1px solid #000000;
background-color : #f7f7f7;
text-align : center;
}
table.torrent {
border-style : solid;
border-width : 0;
padding : 0;
background-color : #ececec;
text-align : center;
font-family : sans-serif;
font-size : 8pt;

color : #000000;
}
table.torrenttable {
border-collapse : collapse;
}
table.torrenttable td {
border-right : 1px solid #ffffff;
}
td {
font-size : 8pt;
        vertical-align:top;
}
td.track {
background-color : #000000;
font-size : 6pt;
color : #000000;
}
td.smaller {
font-size : 6pt;
padding : 3px;
}
td.smallish {
font-size : 8pt;
padding : 3px;
}
td.header {
background-color : #ffffff;
font-size : 6pt;
font-weight : bold;
color : #000000;
}
td.headerbg {
background : url(pics/headerbg.png);
}
td.theme {
background-color : #f2f2f2;
}
td.themeupperedge {
background : url(pics/themeupperedge.gif);
}
td.themeleftedge {
background : url(pics/themeleftedge.gif);
}
td.themerightedge {
background : url(pics/themerightedge.gif);
}
td.themeloweredge {
background : url(pics/themeloweredge.gif);
}
td.title {
background : url(pics/upperedge.gif);
background-repeat : repeat-x;
font-size : 8pt;
font-weight : bold;
#color : #980000;
color : #de7d0d;
vertical-align : top;
}
td.errortitle {
background : url(pics/upperedge.gif);
font-size : 8pt;
font-weight : bold;
color : #eeab36;
}
td.footer {
background : url(pics/loweredge.gif);
}
td.leftedge {
background : url(pics/leftedge.gif);
}
td.rightedge {
background : url(pics/rightedge.gif);
}
td.small {
font-size : 7pt;
color : #ffffff;
}
td.colhead {
background-color : #ebebeb;
font-size : 8pt;
color : #000000;
font-weight : bold;
}
tr.peerattrs {
vertical-align : bottom;
}
tr.theme {
background-color : #f2f2f2;
}
tr.darkrow {
background-color : #f0f0f0;
}
tr.brightrow {
background-color : #f9f9f9;
}
tr.mouseover {
background-color : #e1e1e1;
}
input, select, textarea {
border-style : solid;
border-width : 1px;
border-color : #c4c4c4;
#font-size : 8pt;
font-size: 1em;
font-family: sans-serif;
#color : #808080;
color : #44453f;
#font-weight : bold;
#text inside buttons and dropdown menus
}
textarea {
overflow : auto;
}
.button {
border-style : solid;
border-width : 1px;
font-family : sans-serif;
font-size : 8pt;
color : #000000;
text-align : center;
background-color : #c0c0c0;
}
.form {
border-style : solid;
border-width : 1px;
font-family : sans-serif;
font-size : 6pt;
color : #000000;
text-align : center;
background-color : #000000;
}
.text {
font-family : sans-serif;
font-size : 4pt;
}
.btn {
border-style : solid;
border-width : 1px;
font-family : sans-serif;
font-size : 8pt;
color : #000000;
text-align : center;
background-color : #c0c0c0;
}
.hide {
display : none;
}
a:link {
text-decoration : none;
}
a:active {
text-decoration : none;
}
a:visited {
text-decoration : none;
}
a:hover {
#color : #6f0000;
color : #de7d0d;
//controls bottom link on page - "phpmybittorrent" link
}
a {
#color : #1c1c1c;
color : #de7d0d;
}
a.header:active {
color : red;
text-decoration : none;
}
a.header:visited {
color : red;
text-decoration : none;
}
a.header:hover {
color : #d46400;
text-decoration : underline;
}
a.header:link {
color : red;
text-decoration : none;
}
a.pager {
font-size : 12pt;
text-decoration : none;
padding : 0 2px;
border : 1px solid #bababa;
}
a.pager:active {
font-size : 14pt;
}
a.pager:hover {
font-size : 14pt;
}
a.header:hover {
color : #d46400;
text-decoration : underline;
}
a.gray {
color : #808080;
}
a.cross:hover {
border-width : 0;
}
a.cross:link {
border-width : 0;
}
a.admin {
color : #aa0000;
font-weight : bold;
text-decoration : none;
}
a.moderator {
color : #53b54f;
font-weight : bold;
text-decoration : none;
}
a.premium {
color : #cecc46;
font-weight : bold;
text-decoration : none;
}
a.user {
color : #000000;
font-weight : bold;
text-decoration : none;
}
a.smaller-bold {
font-family : sans-serif;
font-size : 6pt;
font-weight : bold;
color : #757576;
}
a.middle-bold {
font-family : sans-serif;
font-size : 8pt;
font-weight : bold;
color : #757576;
}
a.middle-bold:hover {
color : #980000;
}
#navcontainer {
margin : 20px 10px;
}
#navlist {
padding : 3px 0;
margin-left : 0;
#border-bottom : 1px solid #778;
border-bottom : 1px solid #333333;
#font : bold 12px sans-serif, sans-serif;
font-size: .9em;
font-family: Helvetica, sans-serif;
text-transform: uppercase;
}
#navlist li {
list-style : none;
list-style-position: outside;
list-style-image: none;
	margin: 10px auto 0 10px;
	#padding: 1em 0;
#margin : 0;
display : inline;
border-right: 1px solid #333;
}
#navlist li a {
padding : 3px 0.5em;
#margin-left : 3px;
margin: 10px auto 0 10px;
#border : 1px solid #778;
border-bottom : none;
#background : #d2d2d2;
background : #000000;
text-decoration : none;
letter-spacing: 2px;
}
#navlist li a:link {
#color : #667;
color : #ffffff;
}
#navlist li a:visited {
#color : #667;
color : #ffffff;
}
#navlist li a:hover {
#color : #fff;
color : #de7d0d;
#background : #990100;
background : #000000;
border-color : #227;
#this controls the tabs on the top of the page - i.e. 'home' 'torrents' 'forum' etc.
}
#navlist li a#current {
#color : #990100;
color : #de7d0d;
#background : #f2f2f2;
background : #000000;
#border-bottom : 1px solid #f2f2f2;
}
#navlistsmall {
padding : 3px 0;
margin-left : 0;
border-bottom : 1px solid #e2e2e2;
font : bold 10px sans-serif, sans-serif;
}
#navlistsmall li {
list-style : none;
margin : 0;
display : inline;
}
#navlistsmall li a {
padding : 3px 0.5em;
margin-left : 0;
border : 1px solid #e2e2e2;
border-bottom : none;
background : #fbfbfb;
text-decoration : none;
}
#navlistsmall li a:link {
color : #667;
}
#navlistsmall li a:visited {
color : #667;
}
#navlistsmall li a:hover {
color : #555556;
background : #ededed;
border-color : #d9d9d9;
}
#navlistsmall li a#current_small {
color : #990100;
background : #ffffff;
border-bottom : 1px solid #ffffff;
}
.tabberlive .tabbertabhide {
display : none;
}
.tabberlive {
margin-top : 1em;
}
ul.tabbernav {
margin : 0;
padding : 3px 0;
border-bottom : 1px solid #e2e2e2;
font-size : 8pt;
}
ul.tabbernav li {
list-style : none;
margin : 0;
display : inline;
}
ul.tabbernav li a {
padding : 3px 0.5em;
margin-left : 3px;
border : 1px solid #e2e2e2;
border-bottom : none;
background : #fbfbfb;
text-decoration : none;
}
ul.tabbernav li a:link {
color : #667;
}
ul.tabbernav li a:visited {
color : #667;
}
ul.tabbernav li a:hover {
color : #990100;
background : #ededed;
border-color : #e2e2e2;
}
ul.tabbernav li.tabberactive a {
color : #990100;
background-color : #fff;
border-bottom : 1px solid #fff;
}
ul.tabbernav li.tabberactive a:hover {
color : #990100;
background : white;
border-bottom : 1px solid white;
}
.tabberlive .tabbertab {
padding : 15px;
border : 1px solid #e2e2e2;
border-top : 0;
}
.tabberlive .tabbertab h2 {
display : none;
}
.tabberlive .tabbertab h3 {
display : none;
}
.tabberlive#tab2 .tabbertab {
height : 200px;
overflow : auto;
}
ul.story {
margin : 0 50px;
font-size : 10pt;
padding : 0;
display : inline-block;
list-style-type : none;
}
ul.story li {
display : inline-block;
overflow : hidden;
padding-top : 0.8em;
}
ul.story p {
margin-bottom : 20px;
font-size : 10pt;
}
.storyimage {
margin : 5px 10px 0 50px;
float : right;
}
.headlines h3 {
margin : 0;
padding-top : 1em;
}
#right-text div.headlines h3 {
padding-top : 0.4em;
}
ul.headlines {
font-size : 8pt;
margin-top : 0;
padding-left : 0.75em;
margin-left : 0.75em;
margin-bottom : 20px;
}
ul.headlines li {
margin-top : 0.2em;
} 
#topnav, #blog_title, #archive_wrapper, #secondary_nav_content {
	width: 70em;
	margin: 0 auto;
	}
	
#topnav a {
	padding: 1em 1.5em 1em 1.5em;
	}
#topnav a:hover {
	color: #DE7D0D;
	}
#topnav {
    color:#FFFFFF;
	margin-top: 3em;
	padding: 0 0 1em 0;
	text-transform: uppercase;
	border-bottom : 3px solid #333333;
	#font : bold 12px sans-serif, sans-serif;
	font-size: .8em;
	font-family: Helvetica, sans-serif;
	}

#topnav ul {
    color:#FFFFFF;
	list-style-type: none;
	list-style-position: outside;
	list-style-image: none;
	margin: 10px auto 0 10px;
	padding: 1em 0;
	}

#topnav li {
	border-right: 1px solid #333;
}
#topnav li {
	float: left;
	display: inline;
	letter-spacing: 2px;
    color:#FFFFFF;
	}

#topnav ul li > ul {
	display: none;
	}
#topnav, #footer, #topnav ul {
	background-color: #000;
	color: #FFFAEF;
	}
.current_page_item a, .current a {
	color: #DE7D0D;
	}
ul, ol {
	margin: 0 0 1.5em 0;
	}
.widget ul li {
	display: block;
	float: left;
	text-align: left;
	margin: .5em;
}

.widget ul {
	margin: 0 0 0 6em;
	line-height: 1.5em;
}


http://a.imageshack.us/img831/5562/mybikes.png
Re: Modifying the Navigation Menu [message #4486 is a reply to message #4484] Mon, 19 July 2010 01:47 Go to previous message
watermolecule is currently offline watermolecule  United States
Messages: 109
Registered: July 2010
Super-Seeder
thanks - this is bringing me much closer to my goal
Previous Topic:eror download!!
Next Topic:Upload Access Error
Goto Forum:
  


Current Time: Wed Feb 08 04:25:17 GMT 2012

Total time taken to generate the page: 0.02889 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software