Aims Infosoft
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hide Button Url on HoverHello,
Yes, it’s possible.=> You can try this one. Please check the below example.
For Example:
===========
HTML:
<a href="https://www.google.com" id="no-link">Hyperlink</a>
JavaScript:
<script type="text/javascript"> jQuery(document).ready(function () { setTimeout(function () { jQuery('a[href]#no-link').each(function () { var href = this.href; jQuery(this).removeAttr('href').css('cursor', 'pointer').click(function () { window.open(href, '_self'); }); }); }, 500); }); </script>
Thanks!
Forum: Fixing WordPress
In reply to: Installing latest version in EC2 instanceHello,
Please check the below link, I think it should help you.
https://coenraets.org/blog/2012/01/setting-up-wordpress-on-amazon-ec2-in-5-minutes/
Thanks
- This reply was modified 5 years, 1 month ago by Aims Infosoft.
- This reply was modified 5 years, 1 month ago by Aims Infosoft.
Forum: Fixing WordPress
In reply to: Menu Overlap w/logo on mobileHello,
Please add this CSS, I think your issue is fixed..site-header .main-navigation .hamburger--spin { padding-top: 52px; }
OR
.site-header .main-navigation .hamburger--spin { padding-top: 52px!important; }
Thanks.
- This reply was modified 5 years, 1 month ago by Aims Infosoft.
Forum: Fixing WordPress
In reply to: Error Enqueing child theme stylesheetsHello,
I think you should try this code.
<?php function my_plugin_add_stylesheet () { wp_enqueue_style ('my-style', get_template_directory_uri (). '/style.css', false, '1.0', 'all'); } add_action ('wp_enqueue_scripts', 'my_plugin_add_stylesheet');
OR
<?php function my_theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style ($parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get( 'Version' ) ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles', 1000 );
Thanks!