Author Topic: Quoting & Coding Question  (Read 776 times)

0 Members and 1 Guest are viewing this topic.

Offline Patti Feinberg

  • Full A ed Newest Fervor Post
  • DSF God
  • *****
  • Posts: 3291
  • Karma: +1729/-3046
  • Gender: Female
    • View Profile
Quoting & Coding Question
« on: March 17, 2005, 09:37:21 PM »
On CE&A board, Connie had quoted me. I wondered why my text went to two lines, but her quote only took up one.

Plus, I sent someone something in code...and both quotes and codes appear to be smaller.

I then clicked quote to Midnite's reply (same board), but there's nothing denoting the size.

Why does code and quote come out smaller?

Patti
What a Woman!

Offline Mysterious Benefactor

  • Systems Manager /
  • Administrator
  • NEW SUPERNAL SCEPTER
  • *****
  • Posts: 16071
  • Karma: +205/-12187
  • Gender: Male
    • View Profile
Re: Quoting & Coding Question
« Reply #1 on: March 17, 2005, 10:51:49 PM »
It all has to do with the way the text size and font are defined for the forum's individual features. For instance, the text that appears in posts is defined as follows:

/* By default (td, body..) use Tahoma in white. */
body, td
{
   color: #ffffff;
   font-size: small;
   font-family: Tahoma, arial, helvetica, serif;

}


Whereas, the quote and code boxes are defined like this:

/* A quote, perhaps from another post. */
.quote
{
   color: #000000;
   background-color: #84add6;
   border: 1px solid #182d42;
   margin: 1px;
   padding: 1px;
   font-size: x-small;
}

/* A code block - maybe even PHP ;). */
.code
{
   color: #000000;
   background-color: #e7e7e7;
   border: 1px solid #000000;
   padding: 1px;
   font-family: "courier new", helvetica, "times new roman", serif;
   font-size: x-small;

   width: 99%;
   margin: 1px auto 1px auto;
   white-space: nowrap;
   overflow: auto;
}

(x-small stands for extra small.)

I then clicked quote to Midnite's reply (same board), but there's nothing denoting the size.

You can't see those definitions because they're stored in a part of the forum that isn't visible/accessible to you.  :)

Offline victoriawinters

  • Full A ed Newest Fervor Post
  • Senior Poster
  • ****
  • Posts: 766
  • Karma: +830/-1839
  • Gender: Female
  • Total ENFJ Geek!
    • View Profile
    • victoriawinters.net
Re: Quoting & Coding Question
« Reply #2 on: March 18, 2005, 10:31:40 AM »
Ok MB, better knock off that CSS code before IE gets ahold of it and does something unspeakable to it.  ;)  (I could not resist.)

Offline Mysterious Benefactor

  • Systems Manager /
  • Administrator
  • NEW SUPERNAL SCEPTER
  • *****
  • Posts: 16071
  • Karma: +205/-12187
  • Gender: Male
    • View Profile
Re: Quoting & Coding Question
« Reply #3 on: March 20, 2005, 02:39:58 AM »
I've changed the quoting definitions/style. Check out:

In an effort to make nested quotes more readable...