It's tiny, no one can read it. For example: http://enochian.org/market/index.php/astaroth-cast-seal-1-inch.html
Where do I find the styles.css? There are many in many different folders. But more importantly where on earth in styles.css is the font dize for the description? The css files are a few thousand lines long, and nothing uder long description or just description... I' tried changing the font in a couple of places and it seems to have not done anything. Heeeep?
Solved! Go to Solution.
The css file is:
http://enochian.org/market/skin/frontend/default/theme641/css/styles.css
The code controlling the font in styles.css is around line 2924 (Right click text in Chrome web browser and choose "Inspect Element"):
body { font-family: "Times New Roman", serif; font-size: 11px; line-height: 15px; background: #322a24; color: #777777; }
You can edit the styles.css file via ftp or ssh if needed.
The css file is:
http://enochian.org/market/skin/frontend/default/theme641/css/styles.css
The code controlling the font in styles.css is around line 2924 (Right click text in Chrome web browser and choose "Inspect Element"):
body { font-family: "Times New Roman", serif; font-size: 11px; line-height: 15px; background: #322a24; color: #777777; }
You can edit the styles.css file via ftp or ssh if needed.
Thank you very very very much!
I had used firebug to try to figure out where exactly the css for the descriptions was hidden, but to no avail (likely lack of user end knowledge lol).
How would I have found that in firefox/firebug if you don't mind me asking? So I can more easily figure out such things in the future.
Again, thank you!
Great!
In Firefox, just righ click on the text and choose "Inspect Element". It will open up debug/firebug with right panel showing rules/css that apply to that section.