Aligning text with form

On my Tournament Registration page, how do I get the text (Online Registration) above the form to line up correctly with the form? II’d like the text to be more to the right.

Also, in the Welcome section, how do I get rid of the space below the text?

Hi @eutaw,

Thank you for reaching out to us.

  • To reduce the welcome section’s space below the text, inspect your Welcome section in Cornerstone. go to Customize tab > Element CSS section and either remove the CSS code or reduce the min-height value

  • To align the content, first inspect your Text element that contains the “Online Registration” text and remove the margin-left property:

Now from your custom CSS section, find and replace this part of your code:

.wpcf7-form{
	 border: 10px solid #ec6434;
	 border-radius: 25px;
	width: 450px;
	padding: 15px 15px 15px 15px;
	margin: 25px;
	margin-left: auto;
	margin-right: auto;
}

With:

.wpcf7-form {
    border: 10px solid #ec6434;
    border-radius: 25px;
    padding: 15px 15px 15px 15px;
}

Don’t forget to clear all caches including your browser’s cache after making changes. Let us know how this goes!

Thank you much! Exactly what I was trying to accomplish.

You’re welcome!
We’re glad @Nabeel were able to help you out.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.