Overclock.net - Overclocking.net
     
 
Home Gallery Reviews Blogs Register Today's Posts Mark Forums Read Members List


Go Back   Overclock.net - Overclocking.net > Software, Programming and Coding > Coding and Programming > Web Coding

Reply
 
LinkBack Thread Tools
Old 08-19-09   #1 (permalink)
nVidia Enthusiast
 
Greensystemsgo's Avatar
 
intel nvidia

Join Date: Apr 2006
Location: Phoenix, ARIZONA!!!!!!
Posts: 971

Rep: 75 Greensystemsgo is acknowledged by some
Unique Rep: 66
Trader Rating: 0
Default rate my and how do i do a mouseover?

heres the site im using. free template. but definitely modified. what you think?

my problem is i wan tthe nav bar at the top, to when you mouse over, the font turns black. i have tried like 3 different ways, but i dunno what im doin wrong i cant do it. can someone plz just make one a mouseover and ill do the rest. ill lub you forever.
__________________
MY FOR SALE THREAD

System: My Machine
CPU
Q6600 G0 @3.1ghz 1.25v
Motherboard
EVGA 680i SLI
Memory
4gb Gskill @ stock clocks
Graphics Card
Geforce 8800gts - 640mb/320bit
Hard Drive
seagate 160gb, hitachi 1tb
Sound Card
on board HD
Power Supply
CORSAIR 750w
Case
Antec900 - custom wire mgmt
CPU cooling
Rosewill
GPU cooling
Stock
OS
win7 rtm x64
Monitor
19" LCD hd 720
Greensystemsgo is offline   Reply With Quote
Old 08-20-09   #2 (permalink)
Heru <3
 
aksthem1's Avatar
 
amd nvidia

Join Date: Jul 2007
Location: Fort Worth, Texas
Posts: 3,950

Rep: 597 aksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famous
Unique Rep: 445
Trader Rating: 9
Default

What do you want us to rate? I don't see a link to the site.

It would be a bit easier to know what we are dealing with so that we can make that mouse over.

System: Sandwich Burglar v2.0
CPU
Athlon II X4 620 @ 3.4GHz
Motherboard
Gigabyte GA-MA790X-DS4
Memory
4x1GB OCZ Platinum Rev. 2 DDR2 800
Graphics Card
PNY 8800GT 512MB
Hard Drive
WD 640GB AAKS + WD 250GB AAJS
Sound Card
Creative X-Fi XtremeGamer
Power Supply
Corsair VX550
Case
Antec 900
CPU cooling
Ultra 120 Extreme (Lapped) Push and Pull
GPU cooling
Zalman FC-ZV9 Blue LED
OS
Windows 7 Pro x64
Monitor
Debranded HP w2207 22"
aksthem1 is online now Overclocked Account   Reply With Quote
Old 08-20-09   #3 (permalink)
nVidia Enthusiast
 
Greensystemsgo's Avatar
 
intel nvidia

Join Date: Apr 2006
Location: Phoenix, ARIZONA!!!!!!
Posts: 971

Rep: 75 Greensystemsgo is acknowledged by some
Unique Rep: 66
Trader Rating: 0
Default

yes im dumb and forgot the link. my bad. i was in a rush for a date. which we saw the time travelers wife. yipee its k though next time its my turn to choose

http://goodjobrecords.com/personal/stuff/it/index.htm
__________________
MY FOR SALE THREAD

System: My Machine
CPU
Q6600 G0 @3.1ghz 1.25v
Motherboard
EVGA 680i SLI
Memory
4gb Gskill @ stock clocks
Graphics Card
Geforce 8800gts - 640mb/320bit
Hard Drive
seagate 160gb, hitachi 1tb
Sound Card
on board HD
Power Supply
CORSAIR 750w
Case
Antec900 - custom wire mgmt
CPU cooling
Rosewill
GPU cooling
Stock
OS
win7 rtm x64
Monitor
19" LCD hd 720
Greensystemsgo is offline   Reply With Quote
Old 08-20-09   #4 (permalink)
Heru <3
 
aksthem1's Avatar
 
amd nvidia

Join Date: Jul 2007
Location: Fort Worth, Texas
Posts: 3,950

Rep: 597 aksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famousaksthem1 is becoming famous
Unique Rep: 445
Trader Rating: 9
Default

I like it for it being a template. Colors fit in well with the scheme. The banner is a bit off on the nav bar though. It's always going to be off by a slight bit depending on the browser you use.

Ok now for the mouseover black text.

Code:
a#navbar:hover { color: #000000; 
    font-weight: bold;
    text-decoration: none;
}
Ok so you may be wondering where I got the navbar from, but I had to put in an ID for it. Here is the code just replace it with this and it should work.

Code:
        <ul>
            <li class="nlink"><a id="navbar" href="#Home">Home</a></li>
            <li class="nlink"><a id="navbar" href="#Archives">Archives</a></li>
            <li class="nlink"><a id="navbar" href="#Apparatus">Apparatus</a></li>
            <li class="nlink"><a id="navbar" href="#Members">Members</a></li>
            <li class="nlink"><a id="navbar" href="#Gallery">Gallery</a></li>
            <li class="nlink"><a id="navbar" href="#Traingin/">Traning</a></li>
            <li class="nlink"><a id="navbar" href="#Store">Store</a></li>
            <li class="nlinkend"><a id="navbar" href="#Links">Links</a></li>
        </ul>

System: Sandwich Burglar v2.0
CPU
Athlon II X4 620 @ 3.4GHz
Motherboard
Gigabyte GA-MA790X-DS4
Memory
4x1GB OCZ Platinum Rev. 2 DDR2 800
Graphics Card
PNY 8800GT 512MB
Hard Drive
WD 640GB AAKS + WD 250GB AAJS
Sound Card
Creative X-Fi XtremeGamer
Power Supply
Corsair VX550
Case
Antec 900
CPU cooling
Ultra 120 Extreme (Lapped) Push and Pull
GPU cooling
Zalman FC-ZV9 Blue LED
OS
Windows 7 Pro x64
Monitor
Debranded HP w2207 22"
aksthem1 is online now Overclocked Account   Reply With Quote
Old 08-20-09   #5 (permalink)
nVidia Enthusiast
 
Greensystemsgo's Avatar
 
intel nvidia

Join Date: Apr 2006
Location: Phoenix, ARIZONA!!!!!!
Posts: 971

Rep: 75 Greensystemsgo is acknowledged by some
Unique Rep: 66
Trader Rating: 0
Default

Quote:
Originally Posted by aksthem1 View Post
I like it for it being a template. Colors fit in well with the scheme. The banner is a bit off on the nav bar though. It's always going to be off by a slight bit depending on the browser you use.

Ok now for the mouseover black text.

Code:
a#navbar:hover { color: #000000; 
    font-weight: bold;
    text-decoration: none;
}
Ok so you may be wondering where I got the navbar from, but I had to put in an ID for it. Here is the code just replace it with this and it should work.

Code:
        <ul>
            <li class="nlink"><a id="navbar" href="#Home">Home</a></li>
            <li class="nlink"><a id="navbar" href="#Archives">Archives</a></li>
            <li class="nlink"><a id="navbar" href="#Apparatus">Apparatus</a></li>
            <li class="nlink"><a id="navbar" href="#Members">Members</a></li>
            <li class="nlink"><a id="navbar" href="#Gallery">Gallery</a></li>
            <li class="nlink"><a id="navbar" href="#Traingin/">Traning</a></li>
            <li class="nlink"><a id="navbar" href="#Store">Store</a></li>
            <li class="nlinkend"><a id="navbar" href="#Links">Links</a></li>
        </ul>



omg dude thankyou so much you went so far and beyond giving me the complete section, i loveyou. also the header was fixed, by simply making the picture seperate from the nav bar. dont kno what the original maker wouldnt.

and again thankyou SO MUCH
__________________
MY FOR SALE THREAD

System: My Machine
CPU
Q6600 G0 @3.1ghz 1.25v
Motherboard
EVGA 680i SLI
Memory
4gb Gskill @ stock clocks
Graphics Card
Geforce 8800gts - 640mb/320bit
Hard Drive
seagate 160gb, hitachi 1tb
Sound Card
on board HD
Power Supply
CORSAIR 750w
Case
Antec900 - custom wire mgmt
CPU cooling
Rosewill
GPU cooling
Stock
OS
win7 rtm x64
Monitor
19" LCD hd 720
Greensystemsgo is offline   Reply With Quote
Old 08-21-09   #6 (permalink)
Audiophile
 
OpticWaves's Avatar
 
amd nvidia

Join Date: May 2008
Location: Spokane
Posts: 391

Rep: 17 OpticWaves Unknown
Unique Rep: 15
Trader Rating: 0
Default

The site looks to be down atm.

My favorite way to do mouse-overs is do exactly what aksthem said, but just barely different.

A really easy way to make buttons for menus is to make a button in photoshop like this -



Notice how the bottom half is lit up just a little.

Then, position image for links to the top, and the a:hover to the bottom, so when you hover, the bottom half shows rather than the top. The cool thing about this technique is that you don't have to use any javascript or load any extra images.

Here's the CSS -

For links
Code:
#wrapper #menu a {
	background-image: url(../images/green_btn.jpg);
	background-position: top;
	width: 100px;
	height: 30px;
	float: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	text-align: center;
	line-height: 30px;
For hover -

Code:
#wrapper #menu a:hover {
	background-image: url(../images/green_btn.jpg);
	background-position: bottom;
__________________
It's O.C. ROUND 2 for THE FOUNDRY !!1

CPU 3DMark06 Score - 4563
Total 3Mark06 Score - 13906

System: The Foundry
CPU
Phenom 9850 Black Edition Rev DR-B3
Motherboard
DFI Lanparty DK 790FX-M2RS
Memory
OCZ Reaper 2x2G DDR2 1066
Graphics Card
Evga 8800GT @ 60% Fans w/Precision
Hard Drive
WD 640GB 7200 RPM SATA 3.0Gb/s + 2x WD 80Gb IDE
Sound Card
Creative SoundBlaster Audigy 2 Platinum
Power Supply
PC Power & Cooling Silencer 610 EPS12V Single Rail
Case
Norco RPC 800 Rackmount - Minor Airflow Mods
CPU cooling
Zalman 9700 Horizontal Mounted w/Arctic Silver 5
GPU cooling
Stock Internal GPU fan
OS
Windows 7 x64 + x32 (x32 for Legacy Apps)
Monitor
2x LG FLATRON W2361V 23" LCD
OpticWaves is offline   Reply With Quote
Reply


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



All times are GMT -5. The time now is 11:35 AM.


Overclock.net is a Carbon Neutral Site Creative Commons License

Terms of Service / Forum Rules | Privacy Policy | DMCA Info | Advertising | Become an Official Vendor
Copyright © 2009 Shogun Interactive Development. Most rights reserved.
Page generated in 0.15807 seconds with 8 queries