vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Image align problem (html) (https://vborg.vbsupport.ru/showthread.php?t=272283)

Scandal 10-18-2011 11:36 AM

Image align problem (html)
 
I have set the following custom bbcode on my site (), for image align left to text.
Code:

<img src="{param}" style="float: left; padding: 3px;" />
But on vBulletin Blog description, if it has an image with align left, I have this problem on layout.
A normal appearance would be this (fake screenshot).

How to change the bbcode code to fix the problem?

Thanks in advance,
-peter

kh99 10-18-2011 11:59 AM

Someone else might have a better solution, but what I did was define a "clear" bbcode like this:

Code:

<div style="clear: both;"></div>
Then if you're done with text that you want to wrap you can insert [clear][/clear]. I suppose you could also edit the postbit or postbit_legacy to insert <div style="clear: both;"></div> (or add that style to an existing div) to make sure the postbit doesn't wrap.

Frosty 10-18-2011 12:02 PM

Have you tried adding "clear:left" ?

Scandal 10-18-2011 02:57 PM

Thanks! With your comments I fix it!
On template BLOG, I find:
Code:

<!-- Description -->
<if condition="$blogheader['description']">
    <div id="blog_description">$blogheader[description]</div>
</if>
<!-- End Description -->

And I add:
Code:

<!-- Description -->
<if condition="$blogheader['description']">
  <table style="clear: both;"><tr><td>
          <div id="blog_description">$blogheader[description]</div>
  </td></tr></table>
</if>
<!-- End Description -->



All times are GMT. The time now is 01:05 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01633 seconds
  • Memory Usage 1,718KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete