After I had made numerous changes to some of the php files and css files in a directory, I uploaded and overwrote one php file and one css file in the directory.
There are 9 css files and 9 php files in the directory.
All css files have identical lines below. The code lines below are identified with AFTER CHANGE.
After I uploaded and overwrote the one css file and one php file,
all the files in the directory appear in the browser as if I had not made any changes to any of the BEFORE CHANGE lines in any of the css files.
I modified the recently uploaded files in the manner shown below but I still have the problem of a background color appearing behind every Bible book.
Here is a file where the changes I had made are not showing.
http://www.findthepower.net/CP/BibleSuperS...erface=advancedAll Bible books now appear as if the link has the background color tan which I had removed in the code.
Each php file in the directory is matched with a css file, i.e. filename:advanced.php is matched to filename:bible_stylesheet_advanced.css
Prior to the uploading and overwriting, I had changed all the css files by changing the line below in each css file. What I changed was background-color:tan; to background-color:;
Other changes were made to each of the css files.
Therefore, after the change, all Bible book links appeared in the browser without any background color in all php files when viewing the file in a browser.
CODE
/* BEFORE CHANGE>>>>>Formatting for book link TEXT This "span" SURROUNDS the book link*/
span.booklink{text-align:left; background-color:tan; padding:4; margin:0; margin-top:20; text-decoration:none;font-family:serif}
to
CODE
/* AFTER CHANGE>>>>>Formatting for book link TEXT This "span" SURROUNDS the book link*/
span.booklink{text-align:left; background-color:; padding:4; margin:0; margin-top:20; text-decoration:none;font-family:serif}
Copies of one css file and one php file were posted in my first request and the link to that thread is here:
http://www.dreamincode.net/forums/showtopic55101.htmWhat did I do and how do I fix it?
Thank you in advance for any replies.