MyBB Community Forums

Full Version: Can't access/how to access <div class="post_author ></div>
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I have been editing a fourms theme, it's all done apart from one bit, it says to edit the color it's in this:

[Image: 7hN8K]

This is what I'm trying to edit, the white bit:

[Image: gygMgEG.png]

It also shows up as post_author, however that color is already set to a different color? As shown below:

[Image: XModm4d.png]
How would I go about editing the white color that is shown in that <div class="post_author" above? Since I can't find it anywhere, not even in the global.css
The problem is it is using an inline style which means you need to edit the postbit_author template.
But there's nothing to do with color in the postbit_author_user

<div class="outer-postbit">
	
<!--
	<div class="postbit-icon">
		<i class="fa fa-pencil-square-o fa_xtra" alt="{$lang->postbit_joined}" title="{$lang->postbit_joined}"></i>
	</div>
-->
	
	<div class="postbit-text">{$lang->postbit_joined} {$post['userregdate']}</div>
	
</div>


<div class="outer-postbit">
	
<!--
	<div class="postbit-icon">
		<i class="fa fa-comments-o fa_xtra" alt="{$lang->postbit_posts}" title="{$lang->postbit_posts}"></i>
	</div>
-->
	
	<div class="postbit-text">{$lang->postbit_posts} {$post['postnum']}</div>
	
		<br />
	
</div>

<div class="outer-postbit">
	{$post['replink']}{$post['profilefield']}
</div>
Check your postbit template for it.
(2018-02-07, 08:57 PM)doylecc Wrote: [ -> ]Check your postbit template for it.

Aha, awesome! Found it, thank you so much, was looking for ages.