PDA

View Full Version : BB Code Enhancements - Change quotation design


Mohammad Kamal
01-14-2013, 11:00 PM
Hello,

Change the quotation appearance in vBulletin 5 Connect!

Screenshot:

https://vborg.vbsupport.ru/attachment.php?attachmentid=143318&stc=1&d=1358259290

Open css_global.css template, and find:

.bbcode_container .bbcode_quote {
background: transparent url("images/css/bckg_conversation_stripe.png") repeat scroll 0 0;
font-size: 11px;
font-style: italic;
padding: 10px;
padding-{vb:stylevar right}:15px;
padding-{vb:stylevar left}:38px;
position: relative;
margin-bottom: 15px;
}

Replace it with:

.bbcode_container .bbcode_quote {
background: #eee;
font-size: 13px;
font-style: italic;
padding: 10px;
padding-left: 38px;
position: relative;
margin-bottom: 15px;
border: 2px solid #ddd;
border-radius: 8px;
padding-right: 10px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-left: 3px solid #8CC8FF;
}

Regards,
Mohammad Kamal

3amalah
02-13-2013, 06:14 AM
good work

abdobasha2004
02-21-2013, 05:11 PM
nice bro :)

Dorgham
02-25-2013, 11:51 AM
I have use vBulletin 4
But very soon I will use vBulletin 5 And so wonderful advantages
Thank you to add wonderful change quotation
Wait more :)

ndut
01-11-2014, 08:15 AM
nice, works for vb 5.05

Spangle
01-19-2014, 10:25 PM
Better if added to css.additional.css works with VB5.0.5

HowToEvery
06-08-2016, 08:22 AM
Doesn't work on version 5.2.2 :(

IggyP
06-09-2016, 12:16 AM
i think u may have an issue on your side...i have had it installed for a while and its still there on mine after 5.2.2

noypiscripter
08-16-2016, 10:47 PM
It's not recommended to edit css_global template. Custom style should be done with style variables and/or by adding it in css_additional template or in Sitebuilder CSS Editor.

Naijasite
05-27-2018, 06:55 PM
i added it through Sitebuilder CSS Editor and it works well on 5.4.1

mmarwan
11-11-2020, 03:26 PM
Simple modification
Corresponds to the left and right
to vBulletin 5.6.4





.bbcode_container .bbcode_quote {
background: {vb:stylevar bbcode_quote_background};
font-size: 13px;
font-style: italic;
padding: 20px;
padding-right: 38px;
position: relative;
margin-bottom: 15px;
border: 2px solid #ddd;
border-radius: 8px;
padding-left: 38px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-left: 3px solid #8CC8FF;
}

John Lester
05-31-2021, 02:09 AM
Neither one of these seem to be working with 5.6.4 patch level 1 :( I put it in css_additional.css

Seven Skins
05-31-2021, 07:24 PM
^^ Most probably iis a caching issue. Clear cache etc...

Try this, this works as well.

.bbcode_container .bbcode_quote {
background: #ededede;
border: 2px solid #dddddd;
border-left: 3px solid #8CC8FF;
border-radius: 8px;
}

John Lester
06-10-2021, 04:49 AM
Sorry for the delay, it appears on my site making changes to additional.css via the ACP does not work. Going through site builder does though :)


Thanks 7