Corrigir Form no MAVAMAIL

Botão no menu

Colocar na class do item do menu:

head_button_pt et_pb_button et_pb_button_0

Colocar no CSS do site:

/* Style Head button */
.head_button_pt > a{
padding-bottom: 0 !important;
color: white !important;
}

.et_mobile_menu li.head_button_pt.et_pb_button a {
padding:0;
}

WP-CONFIG options


/* Limit Post Revisions */
define( 'WP_POST_REVISIONS', 5 );

/* WordPress also autosaves posts, pages and custom post types every minute. This interval can be lengthened */
define( 'AUTOSAVE_INTERVAL', 300 );

/* WordPress will also store deleted posts in the trash for 30 days before it clears them out. This interval can be shortened */
define( 'EMPTY_TRASH_DAYS', 3 );

/* Limit Post Revisions */
define('DISALLOW_FILE_EDIT', true);

/* To enforce a secure, encrypted connection between you and the server when logging into and administering your site */
define('FORCE_SSL_ADMIN', true);

/* Change this to true to enable the display of notices during development */
define('WP_DEBUG', false);

Centrar texto verticalmente

Adicionar na ROW (verde) o seguinte código:

display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-wrap: wrap;
flex-wrap: wrap;