MyBB Community Forums

Full Version: What do i add to the global css.?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Look at the picture.


blockquote {
font-weight: bold;
border-bottom: 3px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;


}

blockquote cite {
font-weight: bold;
border-bottom: 3px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
in blockquote ,
replace border-bottom: 3px solid #000000; with border: 3px solid #000000;
Its gone like this now.


blockquote {
font-weight: bold;
border: 2px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
}

blockquote cite {
font-weight: bold;
border: 2px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
^ do not use border for blockquote cite ; let it be border-bottom

AND try below for blockquote . its NOT exactly what you required ...
blockquote {
font-weight: bold;
border-left: 2px solid #000000;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
}
It's still the same.


blockquote {
font-weight: bold;
border: 2px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
}

blockquote cite {
font-weight: bold;
border-bottom: 2px solid #000000;
font-style: normal;
display: block;
margin: 8px 0;
}

blockquote cite span {
float: right;
font-weight: normal;
}

blockquote cite span.highlight {
float: none;
font-weight: bold;
padding-bottom: 0;
}
^ hmm., your forum says that proxy is detected BUT no proxy is used on my browser ...