Signature Coding Issues
5 posters
Page 2 of 2
Page 2 of 2 • 1, 2
Signature Coding Issues
First topic message reminder :
Forum: websoup.forumotion.com
Version: phpbb2
Permission Level: Founder
I posted about this issue once already, and after very little progress, I got no response back and it was moved to the garbage. Anyway, I have this code here in order to align/wrap images and text next to each other on my forum:
This code works, to an extent. Putting it in my CSS finally allows me to align/wrap images and text on the same line in my signature, but when I'm typing out a forum post and click the "preview" button, my signature runs up into my actual forum post (probably thinking it should align/wrap itself with that). It does not do this on the forum itself or on actual posts -- only when I am previewing posts before I actually post them. How do I force my signature to stay below my previewed forum posts? Does this require editing something in the html pages?
Forum: websoup.forumotion.com
Version: phpbb2
Permission Level: Founder
I posted about this issue once already, and after very little progress, I got no response back and it was moved to the garbage. Anyway, I have this code here in order to align/wrap images and text next to each other on my forum:
- Code:
div[align="left"] {
float: left;
}
div[align="right"] {
float: right;
}
This code works, to an extent. Putting it in my CSS finally allows me to align/wrap images and text on the same line in my signature, but when I'm typing out a forum post and click the "preview" button, my signature runs up into my actual forum post (probably thinking it should align/wrap itself with that). It does not do this on the forum itself or on actual posts -- only when I am previewing posts before I actually post them. How do I force my signature to stay below my previewed forum posts? Does this require editing something in the html pages?
Re: Signature Coding Issues
- Code:
.signature_div div[align="left"], .postbodyinside div[align="left"] {
float: left;
}
.signature_div div[align="right"], .postbodyinside div[align="right"]{
float: right;
}
Try this Basically:
you tell where to apply the code (.signature_div) and specify to WHAT the code should be applied (div[align="left"]) - div element with left alignment.
EDIT: I do see you don't have the "postbodyinside" element.
You can add it in: Admin console - Display - Templates - General/main (the first option in list) - viewtopic_body template.
At around 183 line you will have something like this:
- Code:
<!-- END switch_vote_active -->
<div class="postbody">
<div>{postrow.displayed.MESSAGE}</div>
Replace div to:
- Code:
<div class="postbodyinside">{postrow.displayed.MESSAGE}</div>
Re: Signature Coding Issues
I followed exactly what you said, but for some reason it ended up making the text in all my forum posts huge. Not sure why these codes you gave me altered my forum post text size, do you?
Re: Signature Coding Issues
Make sure that you did not by accident change some codes that were already there.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Signature Coding Issues
Did you deleted the code you had already?
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Signature Coding Issues
Yes, I went ahead and removed it since it messed up my forum posts default text size.
Page 2 of 2 • 1, 2
Similar topics
» Signature coding issues...
» HTML coding issues
» Chatbox coding issues
» Coding help
» Signature Coding problem.
» HTML coding issues
» Chatbox coding issues
» Coding help
» Signature Coding problem.
Page 2 of 2
Permissions in this forum:
You cannot reply to topics in this forum