Sebastian Leupold wrote
James,
whether, where and how a logo is displayed depends on the skin applied to your site (or single pages). I suggest to get familiar with skinning for details.
Portal.CSS can be edited in Site settings or uploaded using FTP or else as you like.
** nods agreement ** It can certainly be confusing at first but skinning in DNN is really pretty straightforward. The hardest part of creating a skin tends to be styling whatever menu system you elect to use.
I realize you just want to modify whatever you are already using for a skin, but you really need to understand skinning to effectively modify an existing skin.
A few quick notes:
DNN truly (and effectively) utilizes Cascading Style Sheets. There isn't just one place to edit CSS. You have a default CSS file for the instance, a portal CSS file, a skin CSS file and possibly container CSS files and module CSS files. (Not to mention that you can add more of your own if you really wanted to.)
Regarding the logo and logo area background color: At some point you have to draw the line between what is an application setting (the logo path/filename) and what belongs in a CSS file (er...well...the CSS). Not every skin may incorporate a LOGO (it's a "skin object"...look it up). Because the LOGO skin object ties into the application and expects to find data in the database, the logo file info is included in the DNN application settings.
Regarding FTP of CSS files: You can edit the portal CSS file through the interface. This is one of the "lower" files in the CSS heiarchy -- it overrides the default CSS and the skin CSS. As previously noted, there may be numerous CSS files depending on what you've employed on your particular portal. DNN can't predict and account for everything -- if you need to change your skin then, yes, you'll need to edit it locally and then FTP it up (or use the built-in skin upload and parse function...your choice).
Once you've gotten an idea of how skin files are arranged it will make much more sense. Track down a tutorial on creating a simple DNN skin from scratch and all should be made much clearer for you...
Good luck!
-mamlin