2
The size of the code and quote boxes are dictated by your themes css file.
Some themes include the size restrictions, some don't and some just don't work...
If your css file does not include the size details, you can just add the info to the css file.
I can see that you already have this info in your .css file.
div.xoopsCode {
font-size: 1em;
font-family: FixedSys, "Courier New",Courier,monospace;
background: #FAFAFA;
border: 1px solid #6C87B0;
color: #385a72;
width: 400px;
max-height: 250px;
margin: 0.5em;
overflow: auto;
padding: 5px;
}
div.xoopsQuote {
font-size: 1em;
font-family: FixedSys, "Courier New",Courier,monospace;
background: #FAFAFA;
border: 1px solid #6C87B0;
color: #385a72;
width: 400px;
max-height: 250px;
margin: 0.5em;
overflow: auto;
padding: 5px;
}
You can try to edit that info to manipulate the box sizes. perhaps a smaller width, perhaps using max-width??
If changes are not showing up, clear out the cache and template_c directories and refresh the page.
Like the look of your site by the way.
Dave
EDIT: That code is from the x22d theme, not sure if your other themes include the size restrictions.