views:

35

answers:

3

i made a website that looks like this www.yoursdproperty.com

i would like to know how the CSS is generated? where is it generated? how can i edit the settings that generate the CSS?

+1  A: 

I don't think Joomla generates (=compiles) style sheets out of the box.

Look into your source code:

<link href="/templates/system/css/system.css" rel="stylesheet" type="text/css" />
<link href="/templates/system/css/general.css" rel="stylesheet" type="text/css" />
<link href="/templates/pjo_joomlaforall/css/template_css.css" rel="stylesheet" type="text/css" />

you should be able to edit these without problems?

Pekka
hey pekka thanks so much again for helping, the thing i think that joomla is probably making those
I__
Hmm. I don't know Joomla well enough to know whether there is any automatic generation going on. Anyway, if you need to overwrite some rules, the easiest thing would be setting up a style sheet file of your own, and including it after the aforementioned ones. In that file, you'd just overwrite the classes you need.
Pekka
+1  A: 

It's a while since I looked at Joomla, but (once you're logged into it) isn't there a "Template Manager" through which you edit the CSS?

EDIT: Just checked it out via http://www.opensourcecms.com/, it is indeed "Template Manager", under "Extensions" on the main menu. Select your template, then click the "Edit CSS" button on the top right.

da5id
perhaps you can also answer this http://stackoverflow.com/questions/2173547/css-increasing-size-of-holder-or-what-ever-its-called
I__
A: 

Joomla doesn't make any "automatic generation" of css. The css are in the stylesheets at the url shown.

Donna Vincent