SEO Specialists

Simple Effective Solutions


SEO Audit

We will provide a free SEO audit call with one of our SEO specialists. We will review your site with you and explain our findings clearly.

Mobile Friendly

We can help make your site 'mobile friendly' - Ensuring that everyone can easily access your site, whatever device they are using

Increase your audience

Have you got a great product or service, and just need to spread the word? We will increase how many people visit your site in order to get your word out!

Video Calls

You can book in a personal 'face to face' video call with one of our team straight away. We offer a truly personal service throughout.

Behind the scenes

We can dive into the complicated HTML & CSS for you, meaning you can concentrate on your business whilst we grow your site.

Quality Service

Our experienced team provide a high-quality service throughout, resulting in your site getting more visitors.

731

Customers have recommended us

19

Customers websites currently being built

63%

Our customers average increase in website visitors (Over 12 months)

1,943,212

Cups of coffee consumed whilst working on customers sites (This is the only approximate number on this site)

Recent Articles...

Our Excellent Blog


A Beginner’s Guide to Centering Images in CSS: Tips and Tricks

If you’re new to web development, one of the challenges you may face is centering an image on a webpage using CSS. While there are several methods to achieve this, it can be confusing to know which one to use. In this guide, we’ll walk you through three methods to center an image in CSS.

HTML Center Image – CSS Align Img Center Example

Introduction

Before we dive into the methods, let’s briefly discuss why centering images is important. An image that is not centered can make a webpage look unprofessional and unbalanced. By centering your images, you can create a more visually appealing and polished design.

Using CSS to Center Images

CSS is a powerful tool that allows you to style and position elements on a webpage. To center an image using CSS, you’ll need to use one of the following methods.

Method 1: Using the Text-Align Property

The text-align property can be used to center an image if it’s wrapped in a block-level element such as a div. Here’s an example of how to center an image using the text-align property:

CSS
div {
text-align: center;
}

img {
display: block;
margin: auto;
}

In this example, we’re centering the image by setting the text-align property of the div to center. We’re also setting the display property of the image to block to ensure that it takes up the entire width of the container and setting the margin property to auto to center it horizontally.

Method 2: Using the Margin Property

Another way to center an image using CSS is by using the margin property. Here’s an example:

CSS
img {
display: block;
margin: 0 auto;
}

In this example, we’re centering the image by setting the margin property to 0 for the top and bottom and auto for the left and right.

Method 3: Using the Flexbox Layout

The flexbox layout is a popular CSS layout that can be used to center elements on a webpage. Here’s an example:

css
.container {
display: flex;
justify-content: center;
align-items: center;
}

img {
display: block;
}

In this example, we’re centering the image by using the flexbox layout. We’re setting the display property of the container to flex and using justify-content and align-items to center the image horizontally and vertically.

Conclusion

In this guide, we’ve shown you three methods to center an image using CSS. Whether you choose to use the text-align property, margin property, or flexbox layout, the key is to find a method that works for your specific needs. With these tips and tricks, you can create a more polished and visually appealing webpage.


The Ultimate Guide to Creating a Popup in WordPress Without a Plugin

Introduction

Create a popup in WordPress without plugin » TurboHosty
In the digital world, popups have become an essential element for many websites. They help you grow your email list, promote your products, or simply direct your users’ attention to something important. While there are numerous WordPress plugins that allow you to create popups, there are other ways to accomplish this without relying on a plugin. In this article, we will show you how to create a popup in WordPress without using a plugin, step by step. Buckle up and follow along!

1. Preparing Your Popup Content

Before you start coding your popup, it’s essential to prepare your content. Think about the purpose of your popup and the message you want to convey. Make sure your content is clear, concise, and engaging. Once you have your content ready, you can proceed to the next step.

2. Writing the HTML Code for Your Popup

Now, it’s time to create the structure of your popup using HTML. Open a text editor like Notepad++ or Sublime Text and start writing your HTML code. Here is a simple example of an HTML structure for a popup:
html
Copy code
<div id=”popup” class=”popup-container”>
<div class=”popup-content”>
<span class=”close-popup”>&times;</span>
<h3>Your Popup Title Here</h3>
<p>Your Popup Message Here</p>
</div>
</div>
In this example, we’ve created a <div> with an ID of “popup” and a class of “popup-container.” Inside the container, we have another <div> with a class of “popup-content,” which holds our popup’s content. We’ve also included a close button with the class “close-popup.”

3. Styling Your Popup with CSS

Now that we have the HTML structure in place, we need to style our popup using CSS. Open a new file in your text editor and name it “popup-styles.css.” Start writing your CSS code like this:
css
Copy code
/* Popup container */
.popup-container {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}

/* Popup content */
.popup-content {
background-color: #fff;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 50%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* Close button */
.close-popup {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

.close-popup:hover,
.close-popup:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
This CSS code styles the popup container, content, and close button. Save the file, and we’ll move on to the next step.

4. Adding JavaScript

Make Your Popup Functional

With the HTML and CSS in place, it’s time to add functionality to your popup using JavaScript. Create a new file in your text editor and name it “popup-script.js.” Start writing your JavaScript code like this: javascript Copy code document.addEventListener(‘DOMContentLoaded’, function() { var popup = document.getElementById(‘popup’); var closeBtn = document.getElementsByClassName(‘close-popup’)[0];

// Show the popup function showPopup() { popup.style.display = ‘block’; }

// Close the popup function closePopup() { popup.style.display = ‘none’; }

// Set a delay for the popup to appear setTimeout(showPopup, 3000); // 3000 milliseconds = 3 seconds

// Close the popup when the close button is clicked closeBtn.onclick = function() { closePopup(); }

// Close the popup when the user clicks outside of the popup content window.onclick = function(event) { if (event.target == popup) { closePopup(); } } }); In this JavaScript code, we’ve created functions to show and close the popup, as well as a delay for the popup to appear. Save the file, and we’ll proceed to the final step.

5. Implementing the Popup in WordPress

Now that you have your popup’s HTML, CSS, and JavaScript ready, it’s time to implement it in your WordPress website. Follow these steps:

  1. Log in to your WordPress admin dashboard.
  2. Go to Appearance > Theme Editor.
  3. Locate your theme’s “header.php” file and click on it to open the file editor.
  4. Insert your HTML code for the popup just before the closing </head> tag.
  5. In the same “header.php” file, add links to your CSS and JavaScript files by inserting the following code just before the closing </head> tag:
html
<link rel="stylesheet" type="text/css" href="/path/to/your/popup-styles.css" />
<script type="text/javascript" src="/path/to/your/popup-script.js"></script>

Make sure to replace “/path/to/your/” with the actual path to your files. 6. Save your changes by clicking the “Update File” button.

Now, visit your website to see your new popup in action! You’ve successfully created a popup in WordPress without using a plugin.

Conclusion Creating a popup in WordPress without a plugin is a straightforward process that allows you more control over your popup’s design and functionality. By following these steps, you can implement your custom popup and improve user engagement on your website.