This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Enable Search on Mobile for Divi Centered and Centered Inline Logo Headers */ | |
| @media (max-width: 980px) { | |
| /* make search icon visible */ | |
| .et_header_style_centered #et_top_search, .et_vertical_nav.et_header_style_centered #main-header #et_top_search, .et_header_style_split #et_top_search, .et_vertical_nav.et_header_style_split #main-header #et_top_search { | |
| display: block !important; | |
| float: right; | |
| z-index: 99999; | |
| } | |
| /* align search icon for Centered header */ | |
| .et_header_style_centered #et_search_icon:before { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery( document ).ready(function() { | |
| jQuery("#post-link span").wrap('<a href="link_goes_here"></a>'); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| jQuery(document).ready( function() { | |
| jQuery('.nav-link-prev .button').text('Indietro'); | |
| jQuery('.nav-link-next .button').text('Avanti'); | |
| jQuery('.author-box-header h3').text('SULL AUTORE'); | |
| } ); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery( document ).ready(function() { | |
| jQuery("#link-cta .et_pb_module_header").wrap('<a href="link_goes_here"></a>'); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery( document ).ready(function() { | |
| jQuery("#services-cta .et_pb_module_header").wrap('<a href="link_goes_here"></a>'); | |
| jQuery("#about-cta .et_pb_module_header").wrap('<a href="link_goes_here"></a>'); | |
| jQuery("#clients-cta .et_pb_module_header").wrap('<a href="link_goes_here"></a>'); | |
| jQuery("#contact-cta .et_pb_module_header").wrap('<a href="link_goes_here"></a>'); | |
| }); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| jQuery(document).ready( function() { | |
| jQuery('#searchform .screen-reader-text').text('your_text'); | |
| } ); | |
| </script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script> | |
| jQuery(function($){ | |
| $('.et-search-field').attr('placeholder', 'your_text_goes_here').css('opacity','1'); | |
| }); | |
| </script> | |
| <style> | |
| .et-search-field { opacity: 0; } | |
| </style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| jQuery(document).ready( function() { | |
| jQuery('.page-id-2232 span#et-info-phone').text('Main: 02921 690082').css('opacity','1'); | |
| } ); | |
| </script> | |
| <style> | |
| .page-id-2232 span#et-info-phone { opacity: 0; } | |
| </style> |