Rich, I came across three types of styling scenarios, all of which I was careful to only edit that which had already been styled for the most part: EDITING TEXT WITHIN JAVASCRIPT EDITING TEXT (YOU HAD ALREADY STYLED INLINE) OUTSIDE OF JAVASCRIPT EDITING TEXT (WITH NO STYLES) OUTSIDE OF JAVASCRIPT ----------------------------- EDITING TEXT WITHIN JAVASCRIPT >> I already get how to: + find classes etc in javascript and target those in carousel.css + assign a class to text in javascript that previously didn't have a class (or was minimally styled, such as your use of ) I came across text in the javascript that had no id's or classes assigned to them or something minimal like .. so most (maybe 90%) of the styling I completed a while ago was merely switching out or adding this little span to unstyled or minimally styled text: as with this example in cp.php (in the folder admin), 1) WHERE SOMETHING LIKE THIS: //pulls create player form S_CreatePlayer = function() { $j.ajax({ method: 'POST', url: '../forms/create_entry.php', success: function(d) { try { d = $j.parseJSON(d); $j('#content').html(''); var counter = 1; for(var i=0; iFill out one or more values below to create a new player' + '
'; } else var str = ''; 2) BECAME THIS: //pulls create player form S_CreatePlayer = function() { $j.ajax({ method: 'POST', url: '../forms/create_entry.php', success: function(d) { try { d = $j.parseJSON(d); $j('#content').html(''); var counter = 1; for(var i=0; iFill out one or more values below to create a new player

' + ''; } else var str = ''; As mentioned, sometimes I noticed you had javascript text styled inline with something like which I switched out with . This was 90% of my styling of the entire dashboard, which I got done ages ago. ** So to answer your question, I was styling javascript inline because you already had done so .. I was merely changing it to the classes designated in carousel.css instead of using styles like . ----------------------------- EDITING TEXT (YOU HAD ALREADY STYLED INLINE) OUTSIDE OF JAVASCRIPT >> So then this week I went through the folders to see if I had missed anything and found numerous files that ** you had already styled inline **, such as Uploading.php (in the folder ajax), so I merely pointed the styling to carousel.css, 1) CHANGING SOMETHING LIKE THIS: Choose Image 2) TO THIS:
Choose Image
----------------------------- EDITING TEXT (WITH NO STYLES) OUTSIDE OF JAVASCRIPT >> Then I found unstyled error messages that had no classes assigned to them at all, so I began styling those merely by giving them classes (thinking it was ok since you yourself had been styling text that wasn't emebedded within javascript, as with the example above in Uploading.php.) Here's a good example .. the file home.php (in the folder ajax), HAD THE ORIGINAL FORM SOMETHING LIKE THIS: 1) Welcome to $sitename This is your main control panel to create, edit, and delete new and existing players. Any changes you make here will automatically and immediately change the same data in your website. EOF; echo GF_RemoveAllWhitespaceExceptSpaces($str); I completely get me being able to target h1 in a style sheet to style that .. no inline styling needed. But the text below it had no id's or classes assigned to it at all, hence no access to style it. ** How do you suggest I style the text below h1 ("This is your main...")? ** SO I CHANGED IT TO: 2) Welcome to $sitename This is your main control panel to create, edit, and delete new and existing players. Any changes you make here will automatically and immediately change the same data in your website.






EOF; echo GF_RemoveAllWhitespaceExceptSpaces($str); The breaks were needed to force the footer to the bottom as it was hugging the top (which I had originally had hugging the bottom in my original code with a 'sticky footer' in carousel.css). Marcus Sent using Hushmail