XF 1.4 HTML Tags not working on new page node

Jack V

Member
Hello,
So I created a new page node and formatting tags like <h2> and <strong> don't seem to be showing up on the front end. Here is my html code, which is in the "description" box.
HTML:
<head>
<meta charset="utf-8">
<title>FAQ & Support &raquo; =VentureMC</title>
<meta name="description" content="Support and FAQ on all things Venture">
<meta name="author" content="VMC - VentureMC">
<meta name="viewport" content="width=1100">

<body>
<h2><strong> How do I join the VentureMC server?</strong></h2>
<hr />
<br />
<p>Joining VentureMC is quick and easy! Just type in the IP <strong>play.venturemc.net</strong> on Minecraft and you're set!</p>
<br />
<h2> <strong>What is VentureMC?</strong></h2>
<hr />
<br />
<p>VentureMC is a Minecraft network with new, fun games. We also donate 15% of every purchase to the Oxfam Charity to help people in poverty around the world.</p>
<br />
<h2>Where can I find a rulebook for the server and the forums?</h2>
<hr />
<br />
<p>You can find a rulebook on all things Venture <a href="http://www.venturemc.net/index.php?threads/community-rules.4/#post-4">HERE</a>.</p>
<br />
<h2>Is VentureMC free to play?</h2>
<hr />
<br />
<p>Of course! VMC is free to play and always will be. However, we do encourage our players to purchase awesome perks like Premium Memberships on the <a href="http://store.venturemc.net/">STORE</a>.</p>
<br />
<h2>I purchased something on the store, when will I get it?</h2>
<hr />
<br />
<p> You should get your perks in-game within 30 minutes. If for some reason you have not, please contact <strong>support@venturemc.net</strong> and we'll get you sorted right away!</p>
</body>
</html>

Here is my website showing this on the front-end. VentureMC FAQ & Support | VentureMC - Fun, Original, Minecraft
So, some tags (like the <href />) seem to be working fine, whilst others are not. Any ideas on why this is happening or how I could fix it?
 
You don't need the head, title, meta and body tags.

You need to wrap the content in the 'baseHtml' class.

HTML:
<div class="baseHtml">
<h2><strong> How do I join the VentureMC server?</strong></h2>
<hr />
<br />
<p>Joining VentureMC is quick and easy! Just type in the IP <strong>play.venturemc.net</strong> on Minecraft and you're set!</p>
<br />
<h2> <strong>What is VentureMC?</strong></h2>
<hr />
<br />
<p>VentureMC is a Minecraft network with new, fun games. We also donate 15% of every purchase to the Oxfam Charity to help people in poverty around the world.</p>
<br />
<h2>Where can I find a rulebook for the server and the forums?</h2>
<hr />
<br />
<p>You can find a rulebook on all things Venture <a href="http://www.venturemc.net/index.php?threads/community-rules.4/#post-4">HERE</a>.</p>
<br />
<h2>Is VentureMC free to play?</h2>
<hr />
<br />
<p>Of course! VMC is free to play and always will be. However, we do encourage our players to purchase awesome perks like Premium Memberships on the <a href="http://store.venturemc.net/">STORE</a>.</p>
<br />
<h2>I purchased something on the store, when will I get it?</h2>
<hr />
<br />
<p> You should get your perks in-game within 30 minutes. If for some reason you have not, please contact <strong>support@venturemc.net</strong> and we'll get you sorted right away!</p>
</div>

See this guide: How to create a Page node
 
You don't need the head, title, meta and body tags.

You need to wrap the content in the 'baseHtml' class.

HTML:
<div class="baseHtml">
<h2><strong> How do I join the VentureMC server?</strong></h2>
<hr />
<br />
<p>Joining VentureMC is quick and easy! Just type in the IP <strong>play.venturemc.net</strong> on Minecraft and you're set!</p>
<br />
<h2> <strong>What is VentureMC?</strong></h2>
<hr />
<br />
<p>VentureMC is a Minecraft network with new, fun games. We also donate 15% of every purchase to the Oxfam Charity to help people in poverty around the world.</p>
<br />
<h2>Where can I find a rulebook for the server and the forums?</h2>
<hr />
<br />
<p>You can find a rulebook on all things Venture <a href="http://www.venturemc.net/index.php?threads/community-rules.4/#post-4">HERE</a>.</p>
<br />
<h2>Is VentureMC free to play?</h2>
<hr />
<br />
<p>Of course! VMC is free to play and always will be. However, we do encourage our players to purchase awesome perks like Premium Memberships on the <a href="http://store.venturemc.net/">STORE</a>.</p>
<br />
<h2>I purchased something on the store, when will I get it?</h2>
<hr />
<br />
<p> You should get your perks in-game within 30 minutes. If for some reason you have not, please contact <strong>support@venturemc.net</strong> and we'll get you sorted right away!</p>
</div>

See this guide: How to create a Page node
Thanks! Working very well now
 
Top Bottom