Support Forums

Full Version: Postbit image problems
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, Here is a screenshot of my problem

[Image: screenshotyi.png]

As you can see I'm trying to change the postbit replys icons. The ones that you see there are currently edited in postbit_buttonname

If you still don't know what I'm talking about those icons are editing in
postbit_www postbit_report etc.

I have taken out the <span>buttonname</span> out and replaced it with a IMG link to a picture I would like and I got that.

Why is this??

Should I be editing them from my postbit_classic that shows {$post['button_buttonname']}??? I tried replaced that with the image linkl and it's basically doing the exact same thing as editing them from there postbit_ templates.

I want them to be lined up at the bottom with that multiquote. Here is the code that is in the multi quote

Code:
<a href="javascript:Thread.multiQuote({$post['pid']});" style="display: none;" id="multiquote_link_{$post['pid']}"><img style="float: right; margin-top: 2px;" src="{$theme['imglangdir']}/postbit_multiquote.gif" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_{$post['pid']}" /></a>
<script type="text/javascript">
//<!--
    $('multiquote_link_{$post['pid']}').style.display = '';
// -->
</script>

How do I make them lined up right like that??

Do I have to rename something in that code??

I would like if someone were to do this for me as I've spent the past 6 hours trying to hash this out and I have yet to get it.

EDIT: The reason why those far left ones are still gray is because I had yet to edit those.

Should I throw a [.hr] in there and make them push down a little or what?
Any help on this would be great.
Change the "margin-top" inside of style attribute in the img tag to a higher number...
If that doesn't help, try this;

Code:
style="position:relative;top:5px;"
(01-19-2010, 04:26 AM)Master of The Universe Wrote: [ -> ]Change the "margin-top" inside of style attribute in the img tag to a higher number...
If that doesn't help, try this;

Code:
style="position:relative;top:5px;"

Where do I change those edits at??

If in a template or style I've tried. Can you edit it for me.? Please, I'd highly appreciate it. I've tried to get a really good Developer to do it and he still couldn't figure it out.
You change it at the img tag;

Code:
<img style="position:relative;top:5px;" src="{$theme['imglangdir']}/postbit_multiquote.gif" alt="{$lang->postbit_multiquote}" title="{$lang->postbit_multiquote}" id="multiquote_{$post['pid']}" />
It was a bit of a hassle to me so I've deleted the old theme, Added a new one that works automatically with it and I'll just change the themes/colors there. I copied the multiquote thing and replaced it with WWW and edited it around and it still threw them up and down.