How to remove Bordes form postbit ??

Ben10

New Member
hi i had a skin aria in this skin postbit info are shown in white border i want tu show only text with out border see the image plzzzz
 
Remove the class attribute from the
Code:
<div>

look for something similar to this:
Code:
<div [color=Red]class="post_info"[/color]>

and remove the red highlighted part
 
Hoxxy said:
Remove the class attribute from the
Code:
<div>

look for something similar to this:
Code:
<div [color=Red]class="post_info"[/color]>

and remove the red highlighted part

sorry dear Hoxxy i don't understand this answer :(:( ..where i could fing Class attribute ?? i tried this but i can't able to find class attribute :(:(
 
You can find it in:

ACP > Style Manager > Your Style > All Style Options > Go to bottom at Additional CSS Definitions and there should be what you need ;)
 
Many Thanks RSC

there i find this code related like this
.postbit_bl {
background: #ededed;
color: #000000;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
}
.userinfo_bg {
background: #ededed url(images/aria/misc/postbit.jpg) ;
color: #000000;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
}
.vb_postbit_info {
padding-left: 3px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
background-color: #FFFFFF;
border-top: 1px dotted #505050;
border-right: 1px dotted #505050;
border-left: 1px dotted #505050;
border-bottom: 1px dotted #505050;
margin-bottom: 3px;
}
if this is the right code what can i do here ??
 
For the Aria Skin open your postbit_legacy template and change every occurence of

HTML:
<div class="vb_postbit_info">

to
HTML:
<div>

That will remove the borders. Alternatively you could also delete the
HTML:
 .postbit_bl {
background: #ededed;
color: #000000;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
}
.userinfo_bg {
background: #ededed url(images/aria/misc/postbit.jpg) ;
color: #000000;
border-left: 1px solid #FFFFFF;
border-top: 1px solid #FFFFFF;
}
.vb_postbit_info {
padding-left: 3px;
padding-right: 0px;
padding-top: 3px;
padding-bottom: 3px;
background-color: #FFFFFF;
border-top: 1px dotted #505050;
border-right: 1px dotted #505050;
border-left: 1px dotted #505050;
border-bottom: 1px dotted #505050;
margin-bottom: 3px;
}
part of your CSS settings, which will make the div class fall back to a simple div, showing no borders. Though this might be frowned upon by some browsers and the W3C :)

A for the font:
Size can be edited in the CSS settings of your style as well. There are many different font-size settings, so if you could explain which font you would like to change i might be able to provide more help
 
wow gr8 Dear lordsyntax :) now borders removed :) many many thanks to u :):):) ..

i want to increase my basic layout font size on my board coz in aria skin font size of basic lay out is not much larger simply i wan to change general font size ...
 
problem there is that a "general" font size doesn´t really exist. There is a metric fuckton of font-size definitions in each style. The probably easiest approach on that is to open the Main CSS settings of your style, and then look for the categories you would like to have changed, fontwise that is.

Pretty much every categorie there has a Font Size attribute that can be changed. So best thing is to think twice about what you want changed, then figure out which part of the CSS is responsible for that and then change it as you see fit.

If you can´t get it figured out, or can´t be arsed doing that i offer to assist you in changing it. That would require you to give me access to the admincp though, so choice is entirely up to you. PM me in case
 
Back
Top