[Solved] My wordpress website is not listed in google [closed]

The reason it is not being indexed is because of this in head <meta name=”robots” content=”noindex,nofollow”> That will say not to index the website, remove it and it should start to get indexed/crawled….I think you might need to look into the basics of SEO. EDIT: To remove that line either: Open the header.php file and … Read more

[Solved] Javascript for a suggestion box that pops up as the user scrolls down the screen. [closed]

You don’t need a plugin. Try something like this jQuery: $(document).ready(function() { //Check to see if the window is top if not then display button $(window).scroll(function() { if ($(this).scrollTop() > 100) { $(‘.nextPost’).fadeIn(); } else { $(‘.nextPost’).fadeOut(); } }); }); .nextPost { background: lightgray; font-weight: bold; position: fixed; top: 5px; right: 5px; display: none; } … Read more

[Solved] Create a sticky header and sticky sidebar? [closed]

This is a some idea for you , think a minuet you can do it <link rel=”stylesheet” href=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css” integrity=”sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M” crossorigin=”anonymous”> <script src=”https://code.jquery.com/jquery-3.2.1.slim.min.js” integrity=”sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN” crossorigin=”anonymous”></script> <script src=”https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js” integrity=”sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4″ crossorigin=”anonymous”></script> <script src=”https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js” integrity=”sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1″ crossorigin=”anonymous”></script> <body> <nav class=”navbar navbar-expand-md navbar-dark fixed-top bg-dark”> <a class=”navbar-brand” href=”#”>Dashboard</a> <button class=”navbar-toggler d-lg-none” type=”button” data-toggle=”collapse” data-target=”#navbarsExampleDefault” aria-controls=”navbarsExampleDefault” aria-expanded=”false” aria-label=”Toggle navigation”> <span class=”navbar-toggler-icon”></span> </button> … Read more

[Solved] Connect WordPress installed in an instance of Google Cloud Platform to Cpanel in another instance of Google Cloud Platform

Connect WordPress installed in an instance of Google Cloud Platform to Cpanel in another instance of Google Cloud Platform solved Connect WordPress installed in an instance of Google Cloud Platform to Cpanel in another instance of Google Cloud Platform

[Solved] Adding “active” class/id to table style navigation based on url

*first of all, you don’t build menu with <table>. if you need regular menu (not drop down menu) you can use for example: HTML: <div class=”MenuTable”> <a href=”http://www.partsmasterusa.com/”><i class=”fa fa-plus-square”></i> Main</a> <a href=”http://www.partsmasterusa.com/about/”><i class=”fa fa-building”></i> About</a> <a href=”http://www.partsmasterusa.com/part-inquiry/”><i class=”fa fa-info-circle”></i> Part Inquiry</a> <a href=”http://www.partsmasterusa.com/search/”><i class=”fa fa-search”></i> Search</a> <a href=”http://www.partsmasterusa.com/cart/”><i class=”fa fa-shopping-cart”></i> Cart</a> <a href=”http://www.partsmasterusa.com/checkout/”><i class=”fa … Read more

[Solved] how to remove the side blue line from my site [closed]

Only way to give a proper solution for your query is when we get your site url. The blue line may be “box-shadow”, “Outline”, “Border” or Background of an element. However we need physically visit to your site. So, provide the url. 1 solved how to remove the side blue line from my site [closed]

[Solved] what code should i use ?? wordpress and css

It’s really not good practice to do this (override inline styles) and would be better that you can remove the inline styling from your html file, BUT you can do this by adding !important to the relevant css classes. So you could add the following to your external stylesheet #big-video-vid { top: new-value-here !important; left: … Read more

[Solved] Change all prices (numbers) with 20% on webpage [closed]

Does the following help: var currentMode = 1; var discount = 0.20; var reverseDiscount = 1/(1-discount); function togglePrices() { var prices = document.getElementsByClassName(“price”); for (var i = 0; i < prices.length; i++) { var individualPrice = prices[i].innerHTML.substring(1); if(currentMode == 1) { individualPrice = parseFloat(individualPrice) * (1-discount); } else { individualPrice = parseFloat(individualPrice) * reverseDiscount; } … Read more

[Solved] WordPress plugin Responsive Slick Slider

Slick slider supports responsive breakpoints. This example below is taken directly from their documentation: $(‘.yoursliderclass’).slick({ centerMode: true, centerPadding: ’60px’, slidesToShow: 3, responsive: [ { breakpoint: 768, settings: { arrows: false, centerMode: true, centerPadding: ’40px’, slidesToShow: 3 } }, { breakpoint: 480, settings: { arrows: false, centerMode: true, centerPadding: ’40px’, slidesToShow: 1 } } ] }); … Read more