The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
2 mods, same hook, require a linebreak, but how ?
working on a gallery mod for my forum and its working just fine.
Except my gallery link in postbits are placed along side post_thank you link Attachment 109990 so wondering is it possible to make my link do a line break like <br /> i tryed but could not get it working.. PHP Code:
My Gallery</a></div><br />'; but it didnt break the line.. any ideas how to change line either way up or down ? EDIT : tryed replaceing the div tags with DD, DL, LI still no luck |
#2
|
||||
|
||||
Really hard to tell without being able to see a link to a page where this is happening. I have no idea what the Thanks mod code looks like, so it's hard to know why this is happening.
|
#3
|
||||
|
||||
link to a actual page..
http://www.evisystems.org/showthread...ky-Johnny-Cash postbit_legacy just above icq icon |
#4
|
||||
|
||||
You could add style="clear:both;" into your div tag and it will make sure it is on another line.
(I don't like the way they did the Thanks line) |
#5
|
||||
|
||||
tx lynne..
it worked.. |
#6
|
|||
|
|||
same here...
BUT i doubt the page will validate... I am not sure if you are allowed to add a div inside a <dl> </dl> tag... now you have: <dl> <dt>...</dt><dd>...</dd> <dt>...</dt><dd>...</dd><dd>...</dd> <div style="clear:both"></div> </dl> I would put it in <dt> tag adding the clear:both like lynne pointed out... <dl> <dt>...</dt><dd>...</dd> <dt>...</dt><dd>...</dd><dd>...</dd> <dt style="clear:both"></dt> </dl> havent tested but could also be: <dl> <dt>...</dt><dd>...</dd> <dt>...</dt><dd>...</dd><dd>...</dd> <dt style="clear:both"><div>.......</div></dt> </dl> other possibility would be to close the <dl> tag before you place the div-- and reopen it after your code... </dl><div style="clear:both">.....</div><dl> F. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|