MyBB Community Forums

Full Version: All posts bold and no spacing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi guys.

Having a weird issue, whenever I post a thread, the text within turns bold? also if you select centre, it removes the spacing inbetween...

Haven't seen this before, thought it might be in the themes templates but can't find an option for it. 

Any ideas?

[Image: ECxDaBj.png]
Probably a trouble with the CSS of your theme.
Could you provide an url with a test account ?
Crazycat Wrote:Probably a trouble with the CSS of your theme.
Or probably an open <b> / <strong> tag without closing.

Can you see a beginning of bold text? Then check this position to crawl your templates and add the closing tag.

[ExiTuS]
(2021-01-20, 11:44 PM)[ExiTuS] Wrote: [ -> ]
Crazycat Wrote:Probably a trouble with the CSS of your theme.
Or probably an open <b> / <strong> tag without closing.

Can you see a beginning of bold text? Then check this position to crawl your templates and add the closing tag.

[ExiTuS]

That's what my thought was but I can't find an open tag.  Any idea which template i should be looking through? i changed back to the default skin and it isn't bold so it looks like it's deffo the theme.
Okay, that sounds definitevly like an issue with this theme (either templates or styles).

Can you see the beginning of bold text at any position or is bold text all over the whole page?
It might be beneficial to provide an URL of your forum for a live investigation...

Also check the CSS styles of superordniate element classes like body, #content, .wrapper etc. If there is a font-weight: bold, then this will affect a wide block of contents or the while page.
You can also use the web development tools of your webbroweser to investigate your live page while runtime. Have a look at the CSS section and find a font-weight definition, if not you can exclude a CSS issue and concentrate on templates.

[ExiTuS]
it appears tor be bold over the entire forum information but not in the header etc.

I've actually changed themes and the bold wasn't there, not it is back now for some reason?
https://southsiderp.co.uk/forum/index.php


Unsure if related but all thread replies to 'Garen' are in bright pink too? this happened on the last theme.
Hi,

please post the header template of your theme.
<div class="main-header-body">
<div class="main-conteiner">
<div class="logo logo-bg float-left">
<h1><a href="index.php" title=""></a></h1>
</div>

<a href="https://www.gametracker.com/server_info/109.230.215.200:27025/" target="_blank"><img src="https://cache.gametracker.com/server_info/109.230.215.200:27025/b_560_95_1.png" border="0" width="560" height="95" alt=""/></a></a>
{$welcomeblock}



</div>
</div>
<div class="main-header">

<div class="main-conteiner">
<nav class="main-menu float-left ">
<ul>
<li class="line-right"><a href="{$mybb->settings['bburl']}/index.php" title="">Home</a></li>
<li class="line-right"><a href="{$mybb->settings['bburl']}/memberlist.php" title="">Memberlist</a></li>
<li class="line-right"><a href="{$mybb->settings['bburl']}/calendar.php" title="">Calendar</a></li>
<li class="line-right"><a href="{$mybb->settings['bburl']}/showteam.php" title="">Showteam</a></li>
<li class="line-right"><a href="{$mybb->settings['bburl']}/contact.php" title="">Contact</a></li>
<li class="#line-right"><a href="#index.html" title="">Help</a></li>
<li><a href="https://southsiderp.co.uk/donator/"><span style="color: yellow;"><strong>Donate</strong></span></a></li>
<li><a href="https://discord.gg/Mk3ss9ynFG"><span style="color: #7289da;"><strong><img src="https://i.imgur.com/tuG9k0i.png" alt="Join Our Discord!" </strong></span></a></li>
</ul>
</nav>
<nav class="main-menu float-right">
{$quicksearch}
</nav>
</div>
</div>
<navigation>
<div class="main-conteiner">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<br />
{$awaitingusers}
Ok, not there...

your index template, please.
I think i may have figured it, I have some additions to my navigation at the top, something in the below is causing it. I removed it and the text went back to normal.

<li><a href="https://southsiderp.co.uk/donator/"><span style="color: yellow;"><strong>Donate</strong></span></a></li>
	<li><a href="https://discord.gg/Mk3ss9ynFG"><span style="color: #7289da;"><strong><img src="https://i.imgur.com/tuG9k0i.png" alt="Join Our Discord!" </strong></span></a></li>








(Index page, as I already copied it in)

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
<br class="clear" />
<div class="forums float-left">{$forums}</div>
<aside class="main-aside float-right">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
Latest News
</td>
</tr>
<tr>
<td class="trow1">
You can put some news stuff here!
</td>
</tr>
</table>
</aside>
<br class="clear" />
	{$boardstats}
<br style="clear: both" />
{$footer}
</body>
</html>
Pages: 1 2