cancel
Showing results for 
Search instead for 
Did you mean: 

How to make the LONG product description have a larger font?

SOLVED

How to make the LONG product description have a larger font?

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? Smiley Very Happy

1 ACCEPTED SOLUTION

Accepted Solutions

Re: How to make the LONG product description have a larger font?

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.

 

 

View solution in original post

3 REPLIES 3

Re: How to make the LONG product description have a larger font?

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.

 

 

Re: How to make the LONG product description have a larger font?

Thank you very very very much! Smiley Happy

 

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!

Re: How to make the LONG product description have a larger font?

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.