MyBB Community Forums

Full Version: Portal Block Template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'm currently using the pro portal plugin for my portal blocks, and I was wondering how I can use my custom portal block template for the latest announcements, latest posts, etc.

My custom template:

<style type="text/css">
table.hovertable {
	font-family: verdana,arial,sans-serif;
	font-size:11px;
	color:#333333;
	border-width: 1px;
	border-color: #999999;
	border-collapse: collapse;
}
table.hovertable th {
	background-color:#c3dde0;
	border-width: 1px;
	padding: 8px;
	border-style: solid;
	border-color: #a9c6c9;
}
table.hovertable tr {
	background-color:#d4e3e5;
}
table.hovertable td {
	border-width: 1px;
	padding: 8px;
	border-style: solid;
	border-color: #a9c6c9;
}
</style>

<table class="hovertable">
<tr>
	<th>Portal Block Title</th>
</tr>
<tr onmouseover="this.style.backgroundColor='#ffff66';" onmouseout="this.style.backgroundColor='#d4e3e5';">
	<td>Portal Block Content</td>
</tr>


</table>