WordPress Custom Contact Forms – working but not sending email.

Peculiar problem this week with a client simply moving hosting account and not being able to receive contact form emails using Custom Contact Forms in WordPress .

The forms was actually processing perfectly, it was actually storing each enquiry into the “Saved Form Submissions” area however, no emails were being sent.

Turns out this was an issue with and external MX server and cPanel wasn’t configured correctly.

Fix:
Log into cPanel > open MX Entry (under Mail options) and enter your MX destination.

Problem resolved itself instantly after this change.

CSS – Top, Bottom, Left, and Right Properties

One value – Specify an equal margin for all properties
e.g. margin:50px;

Two values – specifies top/bottom (first) and right/left (second) margin
e.g. margin:50px 100px;

Three values – specifies the top (first), right/left (second) and bottom (third) margin
e.g. margin:50px 100px 150px;

Four values – specifies the top, right, bottom and left respectively
e.g. margin:50px 100px 150px 200px;