Blank paragraph in the blog summary
79,547pages on
this wiki
this wiki
Forum page
This Forum has been archived
Visit the new ForumsForums: Index → Support Requests → Blank paragraph in the blog summary
Wikia's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
To contact staff directly or to report bugs, please use Special:Contact.
Note: This topic has been unedited for 340 days. It is considered archived - the discussion is over. Do not add to unless it really needs a response.
When we insert an image, or multiple enter in a blog posts, we get a empty line in the summary of the blog widget:
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p><br></p> ← Image 1
<p><br></p> ← Image 2
<p>Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</blockquote>
It's quite normal, but somehow I don't want to have this meaningless blank space..! Isn't there any way to compress the blockquoted text of <bloglist />? Cafeinlove msg 2012/6/18, 12:35 (UTC)
- Hey, can you link to an example? Might be able to remove it. TK999 13:21, June 18, 2012 (UTC)
- Yup, here you go. site / template (sorry it isn't in english) Cafeinlove msg 2012/6/18, 13:58 (UTC)
Try
var paragraphs = $('.WikiaBlogListingPost'); var content = paragraphs.nodeList; for ( var i = 0; i < content.length; i++ ) { var currentOne = content[i]; if( currentOne.nodeName = "P" && currentOne.nodeList.length = 1 && currentOne.nodeList.item(0).nodeName = "BR" ) { currentOne.nodeList.item(0).style.display="none"; } }
Untested, but it should work. TK999 14:40, June 18, 2012 (UTC)
- I just added it to the site JS, without getting effect. Could you check if something's wrong? Cafeinlove msg 2012/6/18, 14:59 (UTC)
- I'd suggest asking someone like Monchoman45 then, as I see no syntax errors AFAIK. DOM is sometimes problematic and I'm not good at debugging it. TK999 19:50, June 18, 2012 (UTC)
- Thank you for giving solution anyway, perhaps I'll talk with staff soon, they'll probably be able to optimize the widget. Cafeinlove msg 2012/6/19, 08:53 (UTC)
- I'd suggest asking someone like Monchoman45 then, as I see no syntax errors AFAIK. DOM is sometimes problematic and I'm not good at debugging it. TK999 19:50, June 18, 2012 (UTC)