Quick Login   
 
Register AdminFusion Tutorials
 
Featured Sponsors


One.com Domain and Hosting


Register
Forum of the Month
Australian Webmaster
fotm

A webmaster forum specifically catering for Australian site owners. We discuss site development, marketing and management issues.

Tag Cloud
Latest Threads
Forum Stats
8,054 Members
165,788 Posts
43 Users Online

Please welcome our newest member, HaMiDoZ!

Affiliates
Go Back AdminFusion » Management » Graphics and Design » vb nav styling problem
Welcome to the AdminFusion. AdminFusion is the ultimate resource for forum administrators and moderators. With exclusive articles, interviews with the experts, free downloadable skins, and the revolutionary post exchange system - PostFusion, AdminFusion is the place to go for all of your forum needs.  By joining AdminFusion, you will become part of a thriving admin community and immediately gain access to all of these resources. Registration is fast, simple and absolutely free so please join us today!
Want more than our forums? Try these: Post Fusion Forum Matrix
Old 08-21-2006, 03:33 AM   #1

Lpspider's Avatar

Title: Forum Addict

Points: 6,743, Level: 24Points: 6,743, Level: 24Points: 6,743, Level: 24
Level up: 25%, 307 Points neededLevel up: 25%, 307 Points neededLevel up: 25%, 307 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jan 2006

Posts: 1,338

Location: Illinois

Lpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of light
Send a message via MSN to Lpspider  
 
vb nav styling problem

Okay, I'm working on a new vbulletin skin form my site. I did the graphic work first, now I'm coding it. Here is a screenshot. The top navbar you see is the actual coded version. The botton view is the graphic version, the version I want it to look like.

Main problems:

1) if you look closely, on the coded version there's a small back section to the left of the "home" link, and a little bit of extra to the far right.

2) the font - I have it set to Verdana, but it simply isn't showing up that way.



Styles applied in addition to the default:

Code:
p {font-family: Verdana;}


#menu_hover a
{
line-height:12px;
color:#ffffff;
font-family:Verdana;
size:12px;
background-color:#000000;
padding-right:16px;
padding-left:16px;
padding-top:5px;
padding-bottom:5px;
text-decoration: none;
}

#menu_hover a:hover
{
line-height:12px;
font-family:Verdana;
size:12px;
color:#000000;
background-color: #ffffff;
padding-right:16px;
padding-left:16px;
padding-top:5px;
padding-bottom:5px;
text-decoration: none;

}
i'm also having similar problems applying the Verdana font to the rest of the vbulletin page (forum home).

Any help is appreciated.
__________________
Creative Writing|My Blog
Reply With Quote
Old 08-21-2006, 10:36 PM   #2

Lpspider's Avatar

Title: Forum Addict

Points: 6,743, Level: 24Points: 6,743, Level: 24Points: 6,743, Level: 24
Level up: 25%, 307 Points neededLevel up: 25%, 307 Points neededLevel up: 25%, 307 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jan 2006

Posts: 1,338

Location: Illinois

Lpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of light
Send a message via MSN to Lpspider  
 
A suggestion, perhaps?
__________________
Creative Writing|My Blog
Reply With Quote
Old 08-21-2006, 11:25 PM   #3

RedMatrix's Avatar

Title: Gas 1.43

Points: 25,494, Level: 48Points: 25,494, Level: 48Points: 25,494, Level: 48
Level up: 49%, 56 Points neededLevel up: 49%, 56 Points neededLevel up: 49%, 56 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Feb 2006

Posts: 3,984

Location: back in TX

RedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond repute
Send a message via ICQ to RedMatrix Send a message via MSN to RedMatrix  
 
Quote:
Any help is appreciated.
Well, you asked..

Optimize your CSS, please. It makes it easier to digest.

I took the CSS in your code box above, and optimized it:
(and spaced it out for better readability)

Code:
p {font-family: Verdana;}

#menu_hover a,
#menu_hover a:hover {
        font-family:Verdana;
        size:12px;
        line-height:12px;
        color:#FFF;
        background-color:#000;
        padding:5px 16px;
        text-decoration: none;
        }

#menu_hover a:hover {
        color:#000 !important;
        background-color: #FFF !important;
        }
__________________
I went to Vegas, and all I got was this Blister. - true story!
Reply With Quote
Old 08-22-2006, 01:21 AM   #4

Lpspider's Avatar

Title: Forum Addict

Points: 6,743, Level: 24Points: 6,743, Level: 24Points: 6,743, Level: 24
Level up: 25%, 307 Points neededLevel up: 25%, 307 Points neededLevel up: 25%, 307 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jan 2006

Posts: 1,338

Location: Illinois

Lpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of lightLpspider is a glorious beacon of light
Send a message via MSN to Lpspider  
 
Eh, thanks. While it may make the code a bit more clean, still doesn't help with my problem.
__________________
Creative Writing|My Blog
Reply With Quote
Old 08-22-2006, 08:41 AM   #5

RedMatrix's Avatar

Title: Gas 1.43

Points: 25,494, Level: 48Points: 25,494, Level: 48Points: 25,494, Level: 48
Level up: 49%, 56 Points neededLevel up: 49%, 56 Points neededLevel up: 49%, 56 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Feb 2006

Posts: 3,984

Location: back in TX

RedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond reputeRedMatrix has a reputation beyond repute
Send a message via ICQ to RedMatrix Send a message via MSN to RedMatrix  
 
No, but now someone can easily read your code, and give you some advice. Just makes it easier!
__________________
I went to Vegas, and all I got was this Blister. - true story!
Reply With Quote
Reply



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

 
Posting Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Coding problem in new vb forum/skin -page loads saying 'Done but with errors on page' mbradford vBulletin 3 07-07-2006 08:47 PM
Spontaneous VB style problem Lpspider Graphics and Design 5 06-28-2006 12:04 PM
vB Chat Options--Which is best? gprime vBulletin 0 12-11-2005 02:44 AM
Problem in styling the ranks KC phpBB 12 09-25-2005 05:28 PM

AdminFusion

All times are GMT +1. The time now is 06:50 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0 © 2005-2008 AdminFusion - All Rights Reserved


From:
Title:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72