MyBB Community Forums

Full Version: quote box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Around the quote box there are these lines - - -
How do i make those a single line like a box and not - - - and how do i change the line's color ?
ACP -> Templates -> *Template Name* -> css

Look for:

Quote:.quote_header

And find in there:

Quote:border-top: 1px dashed $theme[tabletext];
border-left: 1px dashed $theme[tabletext];
border-right: 1px dashed $theme[tabletext];

And change the bold into solid. That will make it a single solid line. You're going to want to also edit .quote_body and possibly .code_header & .code_body

If you want to change the color of the border, take this for an example:

Quote:border-top: 1px dashed $theme[tabletext];
border-left: 1px dashed $theme[tabletext];
border-right: 1px dashed $theme[tabletext];

and change it to:

Quote:border-top: 1px dashed #ffffff;
border-left: 1px dashed #ffffff;
border-right: 1px dashed #ffffff;

Change the bold to any color code you want.
cool thanx