vForums Support Banner



 

Welcome Guest! Please Login or Register
vForums Support :: Programming & Coding :: Code Requests & Support :: Move UBBC and smilies above Quick Reply - View Topic (Page 1 of 3)Page: 1 2 3
Topic Rating: *****
Printable View
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Move UBBC and smilies above Quick Reply (14th Apr 10 at 4:36pm UTC)
Resolved
Anyone mind making this?

All I want is a code that will move the UBBC and smilies above the quick reply, and possibly center it.

Thanks. {Smile}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (26th Apr 10 at 7:11pm UTC)
Bump?
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (26th Apr 10 at 10:34pm UTC)
Throw me a PM about this tomorrow (about 15 hours time), I'll then get this done for you! {Smile}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 12:21am UTC)
Alright. Will do.
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 4:24am UTC)
Got some spare time! {Cheesy}

Global Header:
<style type = 'text/css'>
#subscribe_topic {
     display: none;
}
#quick_reply_editor {
     float: none;
     text-align: center;
     margin: 0 auto !important;
}
#quick_reply_padding {
     padding-right: 0px !important;
}
</style>


Global Footer:
<script type = 'text/javascript'>
/* Quick Reply Remodel - Wrighty */
with(q = get('quick_reply_editor', 'id')){
     insertBefore(get('smilies', 'id'), q.firstChild);
     insertBefore(get('ubbc_buttons', 'id'), q.firstChild);
}
with(get('ubbc_buttons', 'id')){
     removeAttribute("style");
     style.paddingLeft = (get('table', 'tag')[0].width-312)/2 + "px";
}
</script>
dog199200
Guest
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 5:48am UTC)
i'm going to jump the gun and ask would it be possible to cascade them so that the smiley's are on the left and the ubbc is on the right. I'm sure DM would agree with me that it looks to blocky the way it is {Wink}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 5:56am UTC)
It looks good. BUT would you be able to make it so that the UBBC is all on 1 line? and then have the smilies underneath it, all centered?
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 6:59pm UTC)
I'll have a go at both when I get back {Smile}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 7:52pm UTC)
K, no problem. {Smile}
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (27th Apr 10 at 10:56pm UTC)
 
It looks good. BUT would you be able to make it so that the UBBC is all on 1 line? and then have the smilies underneath it, all centered?


Change the footer JS code to:

<script type = 'text/javascript'>
with(q = get('quick_reply_editor', 'id')){
     insertBefore(get('smilies', 'id'), q.firstChild);
     insertBefore(get('ubbc_buttons', 'id'), q.firstChild);
}
with(get('ubbc_buttons', 'id')){
     removeAttribute("style");
     style.paddingLeft = (get('table', 'tag')[0].width-312*2)/2 + "px";
}
get('br', 'tag', get('ubbc_buttons', 'id'))[0].style.display = 'none';
</script>



Posted By dog199200 on 27th Apr 10 at 5:48am
 
i'm going to jump the gun and ask would it be possible to cascade them so that the smiley's are on the left and the ubbc is on the right. I'm sure DM would agree with me that it looks to blocky the way it is {Wink}


Would look too wide! :/
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (28th Apr 10 at 12:02am UTC)
Thanks, that looks good! {Smile}
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (28th Apr 10 at 12:31am UTC)
{Smile}
dog199200
Guest
Re: Move UBBC and smilies above Quick Reply (28th Apr 10 at 1:06am UTC)
XD hmm maybe so, after cascading it out, though I don't think it would look weird having the UBBC on top and the smiles on the right side in a 4 by 4 (4 rows, 4 in each row). I think it would look good XD
Michael
Moderator
*****

[Avatar]
Recoding the future

Posts: 4,043
Status: Offline
Gender: Male
Location: UK
Joined:  

Additional Groups:
Coding Team
***


Reputation: 58%  


pmtwittervForum
Re: Move UBBC and smilies above Quick Reply (28th Apr 10 at 2:38am UTC)
I could get them 4x4 I guess if ye want! {Tongue Out}
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,012
Status: Offline
Gender: Male
Location: vForums
Age: 33
Joined:  
Reputation: 62%  


pmwww
Re: Move UBBC and smilies above Quick Reply (28th Apr 10 at 2:52am UTC)
I like how it is, for what I want it as. {Smile}
 Printable View
Page: 1 2 3

All times are GMT+0 :: The current time is 12:30am
Page generated in 1.481 seconds
This Forum is Powered By vForums (v2.4)
Create a Forum for Free | Find Forums