[SalesForce] Visualforce appears differently in Community site

I have a super small VF page that is embedded as a component on my Contact page. It works fine internally. However, when I expose it to users in my Community, it appears differently. I've tried to edit the background of the page to the same HEX code as the Community styling and that makes no difference.

Here is my code (result is same regardless of including/removing style):

enter image description here

Here is what it looks like internally:
enter image description here

Here is what it looks like as a Community logged in user:
enter image description here

Best Answer

I was able to resolve this by adding: 'showHeader="false"'

<apex:page standardController="Contact" showHeader="false" >
Related Topic