Welcome to WEBNETIVE, Web Designer In Dubai will tell you how to create a website, your ultimate resource for unlocking the full potential of web design. Whether you’re a seasoned website owner looking to revamp your online presence or a beginner stepping into the fascinating world of web design, you’ve come to the right place.

how to create a website

What We Can Help You With:

  1. WordPress Customization Demystified: Dive into the art of WordPress customization with our comprehensive guides. From tweaking themes to optimizing plugins, we’ll walk you through the steps to make your WordPress site uniquely yours.
  2. CSS Mastery for Stunning Designs: Unleash the power of CSS to transform your website’s appearance. Whether you’re a novice or an experienced designer, discover tips and tricks to create visually appealing and responsive layouts.
  3. PHP Codes Unveiled: Explore the dynamic world of PHP codes. From basic scripts to advanced functionalities, our tutorials will guide you through harnessing the full potential of server-side scripting for your WordPress site.
  4. Structural Data Schema Simplified: Understand the importance of structured data schema for SEO and user experience. Implement best practices to enhance your website’s visibility in search engine results and boost your click-through rates.

So this will be your ultimate guide where WEBNETIVE will tell you how to create a website that really stands out and engage your website visitors in the real-time with more customizations, rich results and custom code for avoiding so many plugins

Custom Schema for local business

Here is a code of custom schema that you can replace with your website information to make it yours and simply copy and paste to your website, please do not forget to run the schema test once you have pasted your schema markup.

In the below local business schema code we have added a Google My Business profile, social links, and review snippets that you not find anywhere with any tool.

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "LocalBusiness",
  "name": "WEBNETIVE",
  "Description":"WEBNETIVE is the only web designer in Dubai as a unique offer, provides Hosting, domain, unlimited email accounts, and technical support (For FREE) with web development to the clients. Our commitment to customer satisfaction is reflected in our 5-star Google rating, based on 214 reviews, Our personalized approach and commitment to excellence have made us a unique than any web design company In Dubai",
  "image": "https://mlu9fwus5pri.i.optimole.com/w:auto/h:auto/q:mauto/ig:avif/https://www.webnetive.ae/wp-content/uploads/2023/02/Webnetive-Site-Image.jpg",
  "url": "https://www.webnetive.ae/",
  "telephone": "+971561375072",
  "email": "contact@webnetive.com",
"PriceRange": "1000-3000",
"Currency": "AED",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Business Bay",
    "addressLocality": "Dubai",
    "addressCountry": "UAE"
  },
  "openingHoursSpecification": {
    "@type": "OpeningHoursSpecification",
    "dayOfWeek": {
      "@type": "DayOfWeek",
      "name": [
      "Monday",
      "Tuesday",
      "Wednesday",
      "Thursday",
      "Friday",
      "Saturday"
    ],
    "opens": "09:00 am",
    "closes": "06:00 pm"
  },
    
     "sameAs": [
    "https://goo.gl/maps/Cza87XaqSoMpgLyj7",
    "https://www.linkedin.com/company/webnetive",
    "https://www.youtube.com/channel/UCxenN9hyDMzE6PKeFVWsvHQ",
    "https://www.instagram.com/webnetive/",
    "https://twitter.com/webnetive"
  ]
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "5",
    "bestRating": "5",
    "worstRating": "1",
    "ratingCount": "9"
  },
  "review": {
    "@type": "Review",
    "author": {
      "@type": "Organization",
      "name": "WEBNETIVE"
    },
    "reviewRating": {
      "@type": "Rating",
      "ratingValue": "5",
      "bestRating": "5",
      "worstRating": "1"
    },
    "reviewBody": "Clients"
  }
}
</script>

How to customize WordPress website scrolling

Below have coded a short CSS snippet that will help you customize the WordPress website scroll color to give your WordPress website an advanced look and stand out aesthetically like a pro, simply copy the code and paste it to WordPress website customization section as additional SCC

::-webkit-scrollbar{
    width: 12px;
    background: #f2f2f2;
}
::-webkit-scrollbar-thumb{
    background: -webkit-linear-gradient(transparent,#black);
    background: linear-gradient(transparent,#2ac4ea);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover{
   background: -webkit-linear-gradient(transparent,blue);
   background: linear-gradient(transparent,000); 
}

/* Return top */
#wp-footer .return-top{
	display:none !important;
}

How to add a Phone or WhatsApp icon in WordPress without a Plugin

The below has a high-quality icon image and perfectly configured code that will add additional features such as calling and WhatsApp messages buttons to your website without a plugin and lots of work.

Steps to follow: copy the code-login to your WordPress dashboard- hover over the appearance-theme file editor- and choose functions. php-paste the code before the end.

add_action('wp_footer', 'add_whatsapp_icon');

function add_whatsapp_icon() {
    echo'<a style="display:block;position:fixed;right:25px;bottom:20px;z-index:1000;" href="https://wa.me/971561375072?text=Hi"><img src="https://mlu9fwus5pri.i.optimole.com/w:auto/h:auto/q:mauto/ig:avif/https://www.webnetive.ae/wp-content/uploads/2023/05/Wa-button.png" style="width:65px;height:65px;"></a>';
}
add_action('wp_footer', 'add_call_now_icon');

function add_call_now_icon() {
    echo'<a style="display:block;position:fixed;right:30px;bottom:105px;z-index:1000;" href="tel:+971561375072"><img src="https://mlu9fwus5pri.i.optimole.com/w:auto/h:auto/q:mauto/ig:avif/https://www.webnetive.ae/wp-content/uploads/2023/05/Call-button.png" style="width:45px;height:45px;"></a>';
}

Please note that if you do not wish to add both the icons/features copy only one starting from add_action and ending with bracket }