[PHP] CSS not picked up
I have the following in my CSS (loaded on the main site page): /* FOOTER */ .footer { font-family: Tahoma, "Trebuchet MS"; font-size: 9px; color: #BFBFBF; text-decoration: none; border: none; line-height: 1.25em; font-weight: bold; } .footer a:link { font-family: Tahoma, Arial, "Trebuchet MS"; font-size: 9px; color: #BFBFBF; text-decoration: none; border: none; line-height: 1.25em; font-weight: bold; } .footer a:visited { font-family: Tahoma, Arial, "Trebuchet MS"; font-size: 9px; color: #BFBFBF; text-decoration: none; border: none; line-height: 1.25em; font-weight: bold; } .footer a:hover { font-family: Tahoma, Arial, "Trebuchet MS"; font-size: 9px; color: #BFBFBF; text-decoration: none; border: none; line-height: 1.25em; font-weight: bold; } and the following in my PHP script © 2004 Keatley Photography - mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED] - 206 240-5543 But, when I change the style.css file and upload it and then refresh the browser, any changes to the font, style, etc to the "footer" class are not picked up. What should I look for?? Jeff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] CSS not picked up
Nope, I have them all. Any other ideas??? Do I need to load the style.css on every sub-page or just on the main page? Perhaps the style sheet is cached so, after I upload a new one, I need to do something to flush the cache? js "Jason Davidson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Possibly you dont have those fonts to see them? > > Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] How to change font attributes in dropdown?
I've tried many locations but can't figure out how to change the font attributes for just my dropdown list on my page. The dropdown box populates its data perfectly but I'd like to change the font to Arial Bold 10pt on the items. Here's my code: ?> > "; echo " Choose Event "; mysql_connect("$DBHost","$DBUser","$DBPass"); $result=mysql("$DBName","SELECT * FROM Category WHERE Category = 'Ordering' ORDER BY Event"); while ($row = mysql_fetch_row($result)) { echo " $row[0] "; } echo ""; ?> http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
[PHP] Displaying Secure Server Lock Symbol??
Very new at this so pardon my ignorance: Off of my regular server, I'm calling a script off of a secure server in order to process a credit card inquiry. I thought that, just by calling the script off of the secure server, that the "gold lock" icon would automatically appear but it does not. Is there something I'm supposed to do when going to that script to make that icon appear? Right now my button click code looks like: href="https://secure.plasticpayments.com/keatleyphoto/authorizenet.php?UID=< ? echo $UID ?>&id="> What else need I do on my end? Or, is the error in the authorizenet.php script on the secure server? Jeff -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php