MyBB Community Forums

Full Version: Duende little changes
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

http://barney.esy.es/portal.php to see more

I'm using Duende and I'm doing some changes to it. I'm making a well looking blog-like portal page but there is something I can't do.

1. Seems like textbox is at width:50% but I can't find it in the CSS and so can't change it, can u bring me some help about this ?

2. I want to add an image to have a blog-like post. And the ability to add this image directly into a post writing

3. In the postbit, I want to have a little "Read More" to read the Custom Fields, because this is actually too big :

[Image: 1471692653-captuare.png]
4. I'm not sure I'm in the right part, but I want to add a page to the registration page. How can I do that ?

Thanks to all of you !
1) Did you delete the avatar from inside the table?
2) You mean attach an image into your post? you can link one using your editor with [img] tags.
3) Your image isn't loading.
4) You might be able to use this depending on what exactly you need the page for.
https://community.mybb.com/thread-116225.html
(2016-08-20, 12:08 PM)iAndrew Wrote: [ -> ]1) Did you delete the avatar from inside the table?
2) You mean attach an image into your post? you can link one using your editor with [img] tags.
3) Your image isn't loading.
4) You might be able to use this depending on what exactly you need the page for.
https://community.mybb.com/thread-116225.html[/img]
[img]

1) Yup, I didn't want it, did I make a mistake ? And how can I delete the avatar and have a 100% width text ? Wink
2) Hmm kinda like but more something like a real newspapers post. Lets say we've a block divided in 4, in the top right one, we have an image, in the others block we have the text. A floating image on the right.
3) [Image: 1471726719-captuare.png]
4) Ok thanks a lot Smile

[/img]
Replace templates > Duende > Portal Templates > portal_announcement

With this
<table cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead"><strong>{$icon} <a href="{$mybb->settings['bburl']}/{$announcement['threadlink']}">{$announcement['subject']}</a></strong></td>
</tr>
<tr>
<td class="trow2" align="right">
<span class="smalltext">{$lang->posted_by} {$profilelink}  - {$anndate} - {$lang->forum} <a href="{$mybb->settings['bburl']}/{$announcement['forumlink']}">{$announcement['forumname']}</a> {$numcomments}</span>
</td>
</tr>
<tr>
<td class="trow1">
<table border="0" cellpadding="{$theme['tablespace']}" class="tfixed" style="width: 100%;">
	<tr>
		
		<td width="100%" class="trow1 scaleimages">
			<p>
				{$message}
			</p>
			{$post['attachments']}
		</td>
	</tr>
	<tr>
		<td align="right" colspan="2" valign="bottom">
			<span class="smalltext">
				<a href="{$mybb->settings['bburl']}/printthread.php?tid={$announcement['tid']}"><img src="{$theme['imgdir']}/printable.png" alt="{$lang->print_this_item}" title="{$lang->print_this_item}" /></a>{$senditem}
			</span>
		</td>
	</tr>
</table>
</td>
</tr>
</table>
<br />

You might need a plugin for that unless you can use MyCode.
https://community.mybb.com/forum-117.html