Natal Mercury in Leo
When a person has his natal Mercury in Leo, the sign will grant a big part of its attributes to everything that Mercury represents in his chart. As Mercury is generally governing our intellect and communication, Leo energy will make the native’s expression quite vivid and even theatrical. It will also aid him leadership abilities, as it makes the chart owner eager to be listened to and admired by other people. Leo is the fifth sign of the zodiac, and has the Sun as its ruling celestial body. Leo is also the natural ruler of the fifth house, which rules fun and recreation, children, love and all that is connected with entertainment. This makes Leo Mercury people concentrate a lot on whatever is fun and involves the intellect.
Mercury in Leo indicates a mind that has a strong will and a firm purpose.�?People in this position can keep an incredible focus on whatever they want.�?Their ability to concentrate gives them a lot of energy and willpower.�?In general, they like to be considered authorities in the areas in which they decided to act and contribute their dramatic but convincing speech.�?However, if taken to an extreme, this inclination can create excessive intellectual pride and a certain arrogance.
The intellectual self-confidence indicated by Mercury in Leo favors a positive attitude to face and solve problems.�?However, there may be a tendency to treat things in broader terms, ignoring the details.�?People with this position can also ignore things that are not related to their immediate interest.�?Since Leo is a fixed sign, opinions are formed slowly and reluctantly.
Sometimes they can feel like they are helping someone, even if they are really getting in the way.�?However, they always think that they are doing well.�?Your plans and projects are rarely left out.�?Persistent, always believes and insists, even if everyone jumps ship.�?This characteristic, combined with their creativity, organization and leadership, offers them great executive capacity.�?They also have an ability to teach and work on the intellectual development of children.
Theater, investments, events, education, photography and other artistic activities are areas of interest.
// jQuery(document).ready( function() { document.addEventListener( \'DOMContentLoaded\', function() { \'use strict\';
/* global jQuery:{} */ /* global td_ajax_url, td_res_context_registered_atts */
const tdFooterWrap = jQuery(\'.td-footer-wrap\'); const tdPostID = \'1541\';
// on ui_delayed_load event tdFooterWrap.on( \'ui_delayed_load\', function () {
jQuery.ajax({ type: \'POST\', url: td_ajax_url, data: { action: \'tdb_get_footer\', postID: tdPostID, td_res_context_registered_atts: td_res_context_registered_atts }, success: function( data, textStatus, XMLHttpRequest ) {
// console.groupCollapsed(\'%c footerLoadContent/tdb_get_footer: success\', \'color: mediumseagreen;\' ); // console.log( \'Post: \', { postId: tdPostID } ); // console.log( \'Reply: \', data ); // console.groupEnd();
// decode data var decodedData = jQuery.parseJSON(data);
// process data content if ( \'undefined\' !== typeof decodedData.content ) { jQuery(decodedData.content).appendTo(tdFooterWrap);
// add custom classes if ( \'undefined\' !== typeof decodedData.classes ) { tdFooterWrap.addClass(decodedData.classes); }
// reinit lazy load if ( ( \'undefined\' !== typeof window.tdAnimationStack ) && ( true === window.tdAnimationStack.activated ) ) { window.tdAnimationStack.reinit(); }
}
}, error: function( MLHttpRequest, textStatus, errorThrown ) { // console.group(\'%c footerLoadContent/tdb_get_footer: error\', \'color: orangered;\' ); // console.log( \'Post: \', { postId: tdPostID, } ); // console.log( \'Error data: \', { // errorThrown: errorThrown, // textStatus: textStatus, // status: MLHttpRequest.status !== undefined ? MLHttpRequest.status : \'\', // MLHttpRequest: MLHttpRequest, // }); // console.groupEnd(); } });
});
// ui events const uiEvents = [ \'mouseover\', \'click\', \'keydown\', \'wheel\', \"touchmove\", \"touchstart\", ];
// ui events handler function uiEventsHandler(e) {
// console.log( \'%c delayed footer load\', \'color: white; background-color: #7ad03a\' ); // console.log( \'event type:\', e.type );
// trigger delayed footer loading tdFooterWrap.trigger(\'ui_delayed_load\');
// remove ui_events uiEvents.forEach( e => { //console.log( \'removeEventListener:\', e ); window.removeEventListener( e, uiEventsHandler ); });
}
// utility function to check if an element is in viewport function isElementInViewport(el) {
var rect = el.getBoundingClientRect();
// var header_menu_affix = jQuery(\'.td-header-menu-wrap.td-affix\'), // header_menu_affix_height = header_menu_affix.length ? header_menu_affix.outerHeight() : 0;
// var admin_bar = jQuery(\'#wpadminbar\'), // admin_bar_height = admin_bar.length ? admin_bar.outerHeight() : 0;
// var setTop = tdFooterWrap.offset().top/* - ( header_menu_affix_height + admin_bar_height )*/, // setHeight = tdFooterWrap.outerHeight(true), // setBottom = setTop + setHeight; // set the bottom by adding its height to the scroll position of its top
// var win = jQuery(window), // windowTop = win.scrollTop(), // windowBottom = windowTop + win.height();
/* rest */ // console.log( \'rect\', rect ); // console.log( \'rect:top\', rect.top ); // console.log( \'rect:bottom\', rect.bottom ); // console.log( \'window.innerHeight\', window.innerHeight );
/* element */ // console.log( \'top\', setTop ); // console.log( \'height\', setHeight ); // console.log( \'bottom\', setBottom );
/* window */ // console.log( \'window top\', windowTop ); // console.log( \'window bottom\', windowBottom );
return ( rect.bottom >= 0 && rect.top <= ( window.innerHeight || document.documentElement.clientHeight ) ); } // check if footer element is in viewport function checkFooterVisibility() { if ( isElementInViewport(tdFooterWrap[0]) ) { //console.log(\'footer el is in the viewport!\'); // trigger delayed footer loading tdFooterWrap.trigger(\'ui_delayed_load\'); } else { // console.log(\'footer el is NOT in the viewport!\'); // add ui events uiEvents.forEach( e => { //console.log( \'footer ui delayed load addEventListener: \', e ); window.addEventListener( e, uiEventsHandler, { passive: true } ); });
}
}
// initial load, check footer visibility after a short delay setTimeout( checkFooterVisibility, 100 );
});