Sign Up

Captcha Click on image to update the captcha.

Have an account? Sign In Now

Sign In

Captcha Click on image to update the captcha.

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Captcha Click on image to update the captcha.

Have an account? Sign In Now

You must login to ask question.

Captcha Click on image to update the captcha.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask question.

Captcha Click on image to update the captcha.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

Designers & Developers Learn, Share, & Build Careers

Designers & Developers Learn, Share, & Build Careers Logo Designers & Developers Learn, Share, & Build Careers Logo

Designers & Developers Learn, Share, & Build Careers Navigation

  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Communities
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • Home
  • About Us
  • Blog
  • Contact Us

Harish

Ask Harish
0Followers
13Questions
Home/ Harish/Answers
  • About
  • Questions
  • Polls
  • Answers
  • Best Answers
  • Followed Questions
  • Favorite Questions
  • Groups
  1. Asked: February 9, 2020In: jQuery

    How to smooth scroll to ID with jQuery

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on February 9, 2020 at 11:05 am

    Add the below code on your project file to get the smooth scroll for the given ID.

    Add the below code on your project file to get the smooth scroll for the given ID.

    
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: February 8, 2020In: WordPress

    How to add class to anchors on WordPress menu

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on February 8, 2020 at 5:25 pm

    Open functions.php and add the below code to add class on anchors function add_link_atts($atts) { $atts['class'] = "nav-link"; return $atts; } add_filter( 'nav_menu_link_attributes', 'add_link_atts');

    Open functions.php and add the below code to add class on anchors

    function add_link_atts($atts) {
      $atts['class'] = "nav-link";
      return $atts;
    }
    add_filter( 'nav_menu_link_attributes', 'add_link_atts');
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: February 7, 2020In: JavaScript

    How to bookmark a page using button?

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on February 8, 2020 at 3:42 am

    Use the below code that will help you to do that. Bookmark This Page

    Use the below code that will help you to do that.

    Bookmark This Page
    
    
    
    
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: January 24, 2020In: Angular

    How to add Material icon in Angular?

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on January 29, 2020 at 5:24 pm

    Use the below method npm install material-icons and import the below code in your style.css @import '~material-icons/iconfont/material-icons.css';

    Use the below method

    npm install material-icons
    

    and import the below code in your style.css

    @import '~material-icons/iconfont/material-icons.css';
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: January 7, 2020In: .htaccess

    how to change the PHP version using .htaccess on server

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on January 9, 2020 at 2:56 am

    Below you have all versions you can use any one of these to change the PHP version. To switch to PHP 5.6: AddHandler application/x-httpd-php56 .php .php5 .php4 .php3 To switch to PHP 7: AddHandler application/x-httpd-php70 .php .php5 .php4 .php3 To switch to PHP 7.1: AddHandler application/x-httpd-pRead more

    Below you have all versions you can use any one of these to change the PHP version.

    To switch to PHP 5.6:

    AddHandler application/x-httpd-php56 .php .php5 .php4 .php3
    

    To switch to PHP 7:

    AddHandler application/x-httpd-php70 .php .php5 .php4 .php3
    

    To switch to PHP 7.1:

    AddHandler application/x-httpd-php71 .php .php5 .php4 .php3
    

    To switch to PHP 7.2:

    AddHandler application/x-httpd-php72 .php .php5 .php4 .php3
    

    To switch to PHP 7.3:

    AddHandler application/x-httpd-php73 .php .php5 .php4 .php3
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: January 1, 2020In: CSS

    How to create blinking or flashing text effects with CSS3

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on January 7, 2020 at 2:26 am

    Hi, here you have CSS keyframes. HTML <span class="flash">Flash</span> Use below CSS .text-flash { animation: flash 1s linear infinite; } @keyframes flash { 50% { opacity: 0; } }

    Hi,

    here you have CSS keyframes.

    HTML

    <span class="flash">Flash</span>
    

    Use below CSS

    .text-flash {
      animation: flash 1s linear infinite;
    }
    
    @keyframes flash {
      50% {
        opacity: 0;
      }
    }
    
    See less
    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: December 30, 2019In: Git

    git pull – fatal: refusing to merge unrelated histories

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Replied to answer on December 30, 2019 at 6:02 pm

    Yes now it's working perfectly thank you :D

    Yes now it’s working perfectly thank you 😀

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: November 8, 2019In: WordPress

    Block access to wp-admin or wp-login.php

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on November 12, 2019 at 3:17 am
    This answer was edited.

    .htaccess can help to block access to wp-admin or wp-login.php and you can add your IP address on allow from, so this can help to access the wp-admin only by your IP address. Add below code that will help to block the users from accessing the wp-admin. <files wp-login.php> Order Deny,Allow denRead more

    .htaccess can help to block access to wp-admin or wp-login.php and you can add your IP address on allow from, so this can help to access the wp-admin only by your IP address. Add below code that will help to block the users from accessing the wp-admin.

    <files wp-login.php>
    Order Deny,Allow
    deny from all
    allow from 122.18.231.8
    allow from 182.1.1.12
    </files>
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: October 5, 2019In: Angular

    On npm install: Unhandled rejection Error: EACCES: permission denied

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on October 10, 2019 at 11:47 am

    You need to restore ownership of the user’s npm related folders for the current users. Use the below code to change the ownership. sudo chown -R $USER:$GROUP ~/.npm sudo chown -R $USER:$GROUP ~/.config

    You need to restore ownership of the user’s npm related folders for the current users. Use the below code to change the ownership.

    sudo chown -R $USER:$GROUP ~/.npm
    sudo chown -R $USER:$GROUP ~/.config
    
    See less
    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: September 21, 2019In: jQuery

    How to disable text selection using jQuery?

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on September 22, 2019 at 6:40 pm

    Use the below code to disable the selection. (function($){ $.fn.disableSelection = function() { return this .attr('unselectable', 'on') .css('user-select', 'none') .on('selectstart', false); }; })(jQuery);

    Use the below code to disable the selection.

    (function($){
        $.fn.disableSelection = function() {
            return this
                     .attr('unselectable', 'on')
                     .css('user-select', 'none')
                     .on('selectstart', false);
        };
    })(jQuery);
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  11. Asked: May 22, 2019In: Unix & Linux

    How to search for a file in the CentOS command line

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on May 22, 2019 at 6:00 pm

    Here you have the solution. replace the filename to search the particular file. find / -name filename

    Here you have the solution. replace the filename to search the particular file.

    find / -name filename
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  12. Asked: May 1, 2019In: Unix & Linux

    Authorization failed. Make sure polkit agent is running or run the application as superuser.

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on May 1, 2019 at 8:57 pm

    Use “sudo” before the command like below: sudo firewall-cmd --zone=public --add-port=80/sctp --permanent

    Use “sudo” before the command like below:

    sudo firewall-cmd --zone=public --add-port=80/sctp --permanent
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  13. Asked: April 17, 2019In: UI & UX

    how to see handles and anchor point missing in adobe illustrator?

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on April 17, 2019 at 6:38 pm

    By mistake maybe you might hide edges, Using the following shortcut key will help you to solve the problem. ctrl-H and on Mac cmd-H which toggles ‘Hide edges’ on and off.

    By mistake maybe you might hide edges, Using the following shortcut key will help you to solve the problem.

    ctrl-H and on Mac cmd-H which toggles ‘Hide edges’ on and off.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  14. Asked: April 16, 2019In: Unix & Linux

    Permission errors even though permissions are wide open

    Harish

    Harish

    • 13 Questions
    • 14 Answers
    • 0 Best Answers
    • 23 Points
    View Profile
    Harish
    Added an answer on April 17, 2019 at 5:32 pm

    See ending with .local, .config, etc.. these files of the permissions that indicates there’s an SELinux context included. You require to get that right for your user to be authorized to list the contents of the directory. sudo ls -alZ Note: The (-Z) option shows the SELinux contexts.

    See ending with .local, .config, etc.. these files of the permissions that indicates there’s an SELinux context included. You require to get that right for your user to be authorized to list the contents of the directory.

    sudo ls -alZ

    Note: The (-Z) option shows the SELinux contexts.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp

Sidebar

Ask A Question

Top Members

Recent Comments

  • Dhinesh on How to remove comma between Tag names in WordPress
  • Siva on How to generate components in a specific folder with Angular
  • Dhinesh on How to disable or hide the resizable property of a textarea?
  • Siva on where to import hammerjs in Angular
  • Siva on How to increase count OnClick using jQuery

Questions Categories

Python
MySQL
Oracle
Objective-C
.NET Framework

Explore

  • Home
  • Communities
  • Polls
  • Tags
  • Badges
  • Users
  • Help

Footer

Ask Rezourze

Ask Rezourze is a social questions & Answers Engine which will help you establish your community and connect with other people.

Terms & Policy

  • Terms of Service
  • Privacy Policy
  • FAQs

Follow

© 2021 Rezourze. All Rights Reserved.