PDA

View Full Version : need help about skin


Prorockz
01-19-2013, 11:48 AM
Hello there.

please need little help about skin

i have enable rep power option but in postbit it not show proper in border as other options show.

i dont know how to explain it cause i dont know much about it

please watch screen short and tell me how i fix border for rep point show in border as other options show.


screen short :

https://vborg.vbsupport.ru/external/2013/01/23.jpg



[img=http://s2.postimage.org/mxsgsodl1/some_problems_vbulletin.jpg] (http://postimage.org/image/mxsgsodl1/)

ikopylov
01-19-2013, 02:28 PM
Give my link to you forum. I help you

Prorockz
01-19-2013, 02:49 PM
<a href="http://profriendskorner.com/" target="_blank">http://profriendskorner.com/</a>

ikopylov
01-19-2013, 03:28 PM
1) Find
<dl class="user_rep">
replace it
<dl class="user_rep userinfo_extra">

2) Find
.postbitlegacy dl.userinfo_extra, .postbitlegacy dl.user_rep

replace:
margin: 5px 0;
with this:
margin: 0;

Prorockz
01-19-2013, 07:31 PM
its not worked.

can u also explain which options have to edit.

Digital Jedi
01-19-2013, 07:49 PM
Are you sure you edited the correct style? It doesn't look like you applied any changes to that skin.

Prorockz
01-19-2013, 08:30 PM
my code little different but that idea is work and i have fix the problem thanks for help also can you tell me same thing for imlink icons like msn. yahoo ect . i have add <div class="imlinks userinfo_extra">

but it not worked

ikopylov
01-20-2013, 06:05 AM
my code little different but that idea is work and i have fix the problem thanks for help also can you tell me same thing for imlink icons like msn. yahoo ect . i have add <div class="imlinks userinfo_extra">

but it not worked
1.
Find:
<div class="imlinks userinfo_extra">
Replace with
<dl class="userinfo_extra"><dt>Connect</dt><dd>
2.
Find closed </div>
Replace with
</dd></dl>
3.
About top space, see my 1st post (https://vborg.vbsupport.ru/showpost.php?p=2397932&postcount=4)

https://vborg.vbsupport.ru/external/2013/01/20.jpg

Prorockz
01-20-2013, 11:06 AM
thanks allot this template worked fine now.

but i try this code an other template loaded at my site . Total-Pro

there also same problem.

1: avatar ----- not show at center.
2: down/upload both point show in 1 border.
3: connect not show in border.

please help me to fix it also thank you

ikopylov
01-20-2013, 12:32 PM
3.
find
<div class="imlinks userinfo_extra">
replace
<dl class="userinfo_extra"><div class="post_field"><dt>Connect</dt><dd>

closed div
replace with </dd></div></dl>
---------------------------
In your style in place DL introduced DIV - do not properly. But since you have already done in the previous block. Therefore validation will show the error.

example:
The correct code is:

<div>
<dl>
<dt><dd></dt></dd>
</dl>
</div>


incorrect code
<dl>
<div>
<dt><dd></dt></dd>
</div>
</dl>

--------------- Added 1358689260 at 1358689260 ---------------

1.
.postbitlegacy .userinfo .postuseravatar, .eventbit .userinfo .eventuseravatar {
_display: block;
_float: left;

2.
Leave as is. It will be hard to fix you

Prorockz
01-20-2013, 06:55 PM
thank you perfect ........