Hi
My forum members complain that when they use the CODE function, the text within the coded area of their message becomes far too small to read, is there a way of changing this other than changing the text size in their browsers.
Many thanks in advance.
You mean when text is entered into a quote or code box?
Into a code box:
Like this - The font size is much too small and difficult to read.
I think the code size can be changed in the CSS
Yep,
in the file Themes/<Your theme>/style.css you can find the following:
/* A code block - maybe even PHP ;). */
.code
{
color: #000000;
background-color: #dddddd;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #000000;
margin: 1px auto 1px auto;
padding: 1px;
width: 90%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}
You may want to change
font-size: x-small;
to "small' maybe?
Greetz!
Anakin