Title: mango404's Replies | WordPress.org

---

# mango404

  [  ](https://wordpress.org/support/users/mango404/)

 *   [Profile](https://wordpress.org/support/users/mango404/)
 *   [Topics Started](https://wordpress.org/support/users/mango404/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mango404/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mango404/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mango404/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mango404/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mango404/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/users/mango404/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mango404/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Current Status of jQuery Migrate](https://wordpress.org/support/topic/current-status-of-jquery-migrate-2/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/current-status-of-jquery-migrate-2/#post-15354026)
 * hi foxglove,
    i found this usefull article (last updated 2019): [https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/](https://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/)
   It says:
 * > Much has changed with WP script loading since this article was posted. These
   > days, WordPress automatically loads jQuery for you
 * WordPress itself wrote this:
 * > Updates to jQuery in WordPress take place across three releases 5.5, 5.6, and
   > 5.7. As we reach the mid-point of this process, run the update test plugin 
   > to check your sites for errors ahead of time.
   > If you find issues with the way your site looks ( e.g. a slider doesn’t work,
   > a button is stuck — that sort of thing), install the jQuery Migrate plugin.
 * I would suggest taking a look at the WordPress Changelog starting at V5.6.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [H1 on tags](https://wordpress.org/support/topic/h1-on-tags/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/h1-on-tags/#post-15251480)
 * Hi, it’s important to use the correct Html-Tags becouse all the Crawlers search
   for these.
    To tell Google what’s going on at your page you need to provide several
   informations. One of this is a main heading (h1). So if a User searches for “
   Html” fo example and your h1 heading says “How to write Html” it’s more likely
   to show up at the search results for “Html”.
 * H1 should be present on every page.
 * Any other headings should be smaller (starting by h2).
 * More or less every Layout has one main Heading. So just change the Tags arround
   that heading to h1. If there is no heading you should create one.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to make logo center on mobile view](https://wordpress.org/support/topic/how-to-make-logo-center-on-mobile-view/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/how-to-make-logo-center-on-mobile-view/#post-15251229)
 * Hey qtn8,
    in your styles.css on line 96 there is this:
 *     ```
       #mobile-logo.logo-center {
           margin: 0;
       }
       ```
   
 * You could just add -auto- to it:
 *     ```
       #mobile-logo.logo-center {
           margin: 0 auto;
       }
       ```
   
 * Seems like it’s doing the job. Let me know if you expirience any issues.
 * The whole CSS should be:
 *     ```
       @media screen and (max-width:600px) {
          #mobile-logo.logo-center {
              margin: 0 auto;
          }
       }
       ```
   
 * It’s centered if your screen is less than 601px width
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Centring navigation menu](https://wordpress.org/support/topic/centring-navigation-menu/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/centring-navigation-menu/#post-15244025)
 * Hi learningtocode,
    try this CSS:
 *     ```
       #site-navigation {
       	width:fit-content;
       	margin: 0 auto;
       }
       .site-header-menu {
       	width:100%;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [disable video forwarding](https://wordpress.org/support/topic/disable-video-forwarding/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/disable-video-forwarding/#post-15240483)
 * You could hide Video controls so User won’t be able to click in the timeline 
   to skip some parts.
 *     ```
       <video nocontrols>
       </video>
       ```
   
 * But keep in mind to set autoplay on your video becouse no user can click play
   button
 *     ```
       <video nocontrols autoplay>
       </video>
       ```
   
 * (Autoplay in Chrome only works muted)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Removing thin line](https://wordpress.org/support/topic/removing-thin-line/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/removing-thin-line/#post-15218240)
 * Hi hadarhacohen,
    just paste this into your CSS
 *     ```
       .content-area {
           border: none;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Single Page Search](https://wordpress.org/support/topic/single-page-search-2/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/single-page-search-2/#post-15217775)
 * Hi sirprizes,
    you can trigger find function with JavaScript too.
 * 1. Create Input Field
    `<input type="text" id="searchterm" placeholder="Enter
   value...">`
 * 2. Copy/Paste Js function into your scripts
 *     ```
       function findTerm() {
       	var searchField = document.getElementById("searchterm");
       	if (searchField.value != null) {
       		window.find(searchField.value);
       	}
       }
       ```
   
 * 3. Call Function
    You can call the function if someone changes the input field
   or by clicking a button. onclick or onchange
 *     ```
       <input type="text" id="searchterm" placeholder="Enter value..." onchange="findTerm()">
       <button onclick="findTerm()" class="button">Find</button>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to add whatsapp link on wordpress](https://wordpress.org/support/topic/how-to-add-whatsapp-link-on-wordpress/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/how-to-add-whatsapp-link-on-wordpress/#post-15191258)
 * Hi Amira,
    if you want to achieve a sharing function including all Apps installed
   on a device, you can use Navigator.share() (yes, javascript): [https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share)
 * It says that Chrome only supports this partialy but i did not expirience any 
   difficulties while using it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [move top bar menu](https://wordpress.org/support/topic/move-top-bar-menu/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/move-top-bar-menu/#post-15081472)
 * hi geront,
    it’s hard to give you answers without actually knowing what’s going
   on.
 * Could you provide the exact CSS code you added to your project? Not the whole
   CSS file only the float thing.
 * I can only check Sourcecode in the logged-out state. So if you could show me 
   what the top bar HTML looks like if logged in that would be helpfull.
    -  This reply was modified 4 years, 6 months ago by [mango404](https://wordpress.org/support/users/mango404/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [move top bar menu](https://wordpress.org/support/topic/move-top-bar-menu/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/move-top-bar-menu/#post-15076405)
 * Just use float.
 *  element with the class “login-button”:
 *     ```
       .login-button {
        float: right;
       }
       ```
   
 * But keep in mind that the elements under that link are going to float into that
   area too. Just add a div with the following styles directly under the a element:
 * HTML:
    `<div class="clear"></div>`
 * CSS:
 *     ```
       .clear {
       clear: both;
       }
       ```
   
 * If you want the whole nav to float right, just add de css to it the same way
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Iframe not displaying on live site](https://wordpress.org/support/topic/iframe-not-displaying-on-live-site/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/iframe-not-displaying-on-live-site/#post-15076359)
 * Hi shirinwp,
    if you are currently using HTTPS while the iframe wants to show
   an HTTP page, it won’t work.
 * Also there are code snippets provided by Google Maps for example. You have to
   use these to make your iframe work. If you just use the Google Maps URL it won’t
   work. Just search for the -embed- button and copy paste the iframe snippet.
 * Websites can allow or block you from using them as a iframe.
 * Hope it helps
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why doesn’t favicon have a transparent background?](https://wordpress.org/support/topic/why-doesnt-favicon-have-a-transparent-background/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/why-doesnt-favicon-have-a-transparent-background/#post-15076316)
 * Hi michalrama,
    none of these GIFs are transparent.
 * For example [This from your Site](https://www.autodopravajarni.cz/wp-content/uploads/2021/09/cropped-cropped-Podane_ruce_MPVP-1-180x180.gif).
 * Best Practise would be a .ico file to use as a Favicon. Export your Logo again
   and check if it’s truly transparent (i would preffer PNG instead of GIF becouse
   of quality). If so, convert it [Here](https://www.hoststar.at/de/tools/favicon-generator).
   You get a preview displayed and you can download all sizes and files at once.
 * Favicon best Practise:
    [w3schools Favicon](https://www.w3schools.com/html/html_favicon.asp)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Can users download pdfs from my site if I don’t install a plugin?](https://wordpress.org/support/topic/can-users-download-pdfs-from-my-site-if-i-dont-install-a-plugin/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/can-users-download-pdfs-from-my-site-if-i-dont-install-a-plugin/#post-15073759)
 * Additionally you can trigger downloading directly onclick.
    `<a href="/uploads/
   my-pdf.pdf" download>Download</a>`
 * [w3schools Download](https://www.w3schools.com/tags/att_a_download.asp)
    -  This reply was modified 4 years, 6 months ago by [mango404](https://wordpress.org/support/users/mango404/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Is there a way to redirect user to Homepage when they click on back button?](https://wordpress.org/support/topic/is-there-a-way-to-redirect-user-to-homepage-when-they-click-on-back-button/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/is-there-a-way-to-redirect-user-to-homepage-when-they-click-on-back-button/#post-15073677)
 * Hi,
    with JavaScript you can add an history entry.
 * If someone comes to that page the script could just add a step between Google
   and the current page.
 * [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API)
    
   [Push State](https://developer.mozilla.org/en-US/docs/Web/API/History/pushState)
    -  This reply was modified 4 years, 6 months ago by [mango404](https://wordpress.org/support/users/mango404/).
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fade in/out transitions](https://wordpress.org/support/topic/fade-in-out-transitions/)
 *  [mango404](https://wordpress.org/support/users/mango404/)
 * (@mango404)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/fade-in-out-transitions/#post-15073633)
 * Hi ed,
    what has the transition to do with wordpress keyword searching?
 * It’s quite a heavy goal for a newbie like you to achieve this effect. I Would
   suggest thinking about a much simpler solution. Like AOS:
    [https://michalsnik.github.io/aos/](https://michalsnik.github.io/aos/)
 * While using that onscroll library you just have to add the following to every
   section you want to animate
 * `data-aos="zoom-in"`

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/users/mango404/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mango404/replies/page/2/?output_format=md)