Posts Tagged ‘css’

New Video Tutorial: Customising HostPay – Part 1

New Video Tutorial: Customising HostPay – Part 1

Posted by Ben on July 15th, 2010

Over the past few months we have been inundated with requests to create a series of videos on how you can customise the look and feel of a HostPay template.

Well, the wait is finally over! You spoke and we listened! Fresh from the Video production studio (Well, me and my laptop) is the first in a series of step-by-step video demonstrations taking you through the process of customising your HostPay template.

The first video from this series is giving you an overview of changing your HostPay templates, swapping in your company logo, CSS tips plus a brief explanation on transferring and editing files.

All the videos can be found within the video section of your customer control panel or alternatively you can check out our YouTube channel (Make sure you subscribe to be the first to know about new video releases).

Remember, you need to have HostPay installed before you can follow this tutorial, luckily we have a demonstration on that as well! – Check that out here.

In the next installment of this video series, you can expect to get into much more detail about changing background, link and text colours and also creating new pages. Part 2 will be coming soon!

Customising HostPay: Part 1

Any questions or feedback please leave them in the comments box below!

Cheers :)

gravatar
Name:Ben Scott
About:As Senior Web Designer, Ben oversees all of Heart Internet's design, usability, SEO and conversion optimisation. Since joining the team in 2009, Ben has redesigned the Heart Internet website as well as the newsletters, HostPay templates, control panel and much more.

Tags: , , , , , , , ,

New! 2 Stylish HostPay Templates Released

New! 2 Stylish HostPay Templates Released

Posted by Ben on February 24th, 2010

Fresh from the creative depths of our web design workshop has emerged a pair of brand new HostPay templates. These templates have taken on a different look from our previous releases as to give our customers a greater choice when selecting a style for their web hosting company.

Both templates have adapted characteristics of modern looking web 2.0 sites you may find online, this breaks away from the more traditional style of design web hosting companies have used over the years and gives you something that’s completely different, but still conveys the right message. Each templates homepage caters for a large promotional pitch at the top, this can be changed to anything you desire, we’ve also added a sprinkle of jQuery magic to one of the templates, to create a slideshow effect that dynamically rotates various messages. We’ve taken the time to include a couple of blank message templates which you can change accordingly using your favorite graphics package (Mines Fireworks!) or use it as a basis to create your own! As usual the templates are built with XHTML/CSS and are fully W3C standards compliant. :)

We hope you enjoy these new-look templates and would certainly love to hear what you think about them!

Screenshots below:

Template 1:

Template 2:
HostPay Template

gravatar
Name:Ben Scott
About:As Senior Web Designer, Ben oversees all of Heart Internet's design, usability, SEO and conversion optimisation. Since joining the team in 2009, Ben has redesigned the Heart Internet website as well as the newsletters, HostPay templates, control panel and much more.

Tags: , , , , , , ,

Tutorial: Creating a Gradient background with a Transparent Logo

Tutorial: Creating a Gradient background with a Transparent Logo

Posted by Ben on November 18th, 2009
New – Free Premium HostPay Template Released

New – Free Premium HostPay Template Released

Posted by Ben on November 17th, 2009

It’s my pleasure to announce the release of our 3rd Premium style HostPay template. This web 2.0 style hosting template comes in four different colour variations: blue, red, green and grey and is available to all our Reseller hosting customers completely free of charge. Following on from the theme of our previous templates it’s CSS based, XHTML/W3C standards compliant and extremely easy to modify and adapt to your own brand, we’ve made everything as highly configurable as possible only using images where needed.

You’ll notice it’s very text heavy, not only will this benefit you from a search engine optimisation point of view but it also allows you to modify this to your own requirements very quickly (Plus it loads extremely fast!). We’ve added some fancy effects like rounded corners and text shadows for all the Firefox/Safari/Chrome users out there! Don’t worry it will still look great in Internet Explorer! :)

Feel free to leave your comments on this new template set. (Don’t forget to send us a link if you use this template for your own hosting company, we’d love to see it in action!)

Screenshots below:

HostPay Home Screenshot

HostPay CP Screenshot

To apply this new template design please login to your customer control panel.

gravatar
Name:Ben Scott
About:As Senior Web Designer, Ben oversees all of Heart Internet's design, usability, SEO and conversion optimisation. Since joining the team in 2009, Ben has redesigned the Heart Internet website as well as the newsletters, HostPay templates, control panel and much more.

Tags: , , , , , , , , ,

CSS Tutorial: Create rounded corners with only one image

CSS Tutorial: Create rounded corners with only one image

Posted by Jonathan on September 29th, 2008

We’re going to show you how to make expandable rounded corners with CSS. Using our method will require only 6 HTML tags and one background image (yes, ONE image for all 4 corners!). It also validates, works across all the major browsers, and looks great in your source code.

Download the full rounded corners tutorial below:
http://www.heartinternet.co.uk/blog/Rounded_Corners.zip

Making the corner images
One downside of most of the other methods for rounded corners is that you require multiple background images, one for each corner. With our method you only need one. If you take a look at corners.gif in the source files you’ll see how you need to set up your image. The basic premise is to create a full circle, chop it up into 4 segments and put each segment in the opposite corner to what it started in (top left would go into the bottom right, etc).
The last thing to do is put a white (or other colour) background behind the segments and then save the image.

HTML Code
<ul class=”roundedCornerWrapper”>
    <li class=”top”>
        <span></span>
    </li>
    <li class=”middle”>
        Heart Internet
    </li>
    <li class=”bottom”>
    <span></span>
    </li>
</ul>

Keeping the HTML short and valid is important for many reasons, so for the rounded corners we’re going to use an unordered list with some span elements. There may be shorter methods, but this is quick, easy, and validates.

The full tutorial including HTML, CSS and Graphics can be download via the link below:
http://www.heartinternet.co.uk/blog/Rounded_Corners.zip

gravatar
Name:Jonathan Brealey
About:As a Director and Co-founder of Heart Internet, Jonathan developed the company based around innovative features, user-friendly functionality and excellent customer support. Jonathan has been a key player in shaping the UK web hosting industry since 1997, having co-founded WebFusion with Tim Beresford.

Tags: , ,

Create a drop shadow effect for your website using CSS

Create a drop shadow effect for your website using CSS

Posted by Jonathan on August 17th, 2008

This tutorial will teach you how to create a drop shadow background effect for your website, using only a single image and some CSS. Not only is a drop shadow effect simple to create (only a few lines of code) but it also adds a new dimension to your site and can really make your content stand out.This post will run through the basics of how the code works and what is needed to create the effect. A fully detailed explanation, including all the code and graphics, can be downloaded at the bottom of this post.

Drop shadow effect example:
http://www.heartinternet.co.uk/blog/HI_Drop_Shadow.zip

The shadow effect is achieved by repeating the image of the drop shadow vertically (see attached files, below) by applying the style to your <body> using CSS. Two drop shadow images have been created, allowing you to use a larger width if necessary. Included sizes are optimised for 800×600 and 1024×768 monitor resolutions. Depending on which size you wish to use, simply change the width property of the #container style.

 

Now that the background effect is applied to the website, add a #container div to your html and give it the property margin: 0 auto; this means it will always sit perfectly in the middle of your page. If you’re using the smaller shadow image make sure the width of the #container is 760px or if you’re using the wider image the width should be 960px.

HTML Code:
<div id=”container”>
     <p>Your Content Here</p>
</div>
CSS Code:
body {
     background-image: url(images/background_760.jpg);
     background-repeat: repeat-y;
     background-position: center;
     background-color: #f7f4ee;
}
#container {
     width: 760px; margin: 0 auto; text-align: center;
}

 

gravatar
Name:Jonathan Brealey
About:As a Director and Co-founder of Heart Internet, Jonathan developed the company based around innovative features, user-friendly functionality and excellent customer support. Jonathan has been a key player in shaping the UK web hosting industry since 1997, having co-founded WebFusion with Tim Beresford.

Tags: , ,

Create a super fast website navigation with a single image and CSS

Create a super fast website navigation with a single image and CSS

Posted by Jonathan on August 6th, 2008

This tutorial will show you how create a navigation for your website using CSS and a single image so there’s no loading times for the rollover states, resulting in smoother transitions.

The trick to creating a seamless rollover is to have both the normal and hover (Rollover) states in a single image and then use CSS to move the image accordingly.

HTML Code: (This goes between your <body> </body> tags)
<div id=”navigation”>
     <ul>
          <li class=”navhome”><a href=”#” mce_href=”#”>Homepage</a></li>
          <li class=”navhosting”><a href=”#” mce_href=”#”>Hosting Packages</a></li>
          <li class=”navcontact”><a href=”#” mce_href=”#”>Contact Us</a></li>
     </ul>
</div>

Stylesheet Code:
#navigation ul {
     width: 333px;
     height: 27px;
     background: url(navigation.gif) no-repeat 0 0;
     list-style: none;
     padding: 0;
     margin: 0 auto;
}
#navigation li {  display: inline; }
#navigation li a:link, #navigation li a:visited {
     display: block;
      text-indent: -7000px;
     outline: none;
     height: 27px;
     width: 100px;
     float: left;
}
#navigation li.navhome a:hover {
      background: url(navigation.gif) no-repeat 0 -27px;
}
#navigation li.navhosting a:hover {
      background: url(navigation.gif) no-repeat -100px -27px;
}
#navigation li.navcontact a:hover {
      background: url(navigation.gif) no-repeat -200px -27px;
}

And that’s it!

Be sure to add the CSS code either within the <head> tag of your website or within a separate stylesheet.

Don’t worry if you are having troubles with this tutorial, you can download all the files associated with it below. If you look in the code of the html you will see everything commented to help you understand how it works and also help you modify it for your own website.

Download this tutorial:
http://www.heartinternet.co.uk/blog/HI_Tutorial_Navigation.zip

gravatar
Name:Jonathan Brealey
About:As a Director and Co-founder of Heart Internet, Jonathan developed the company based around innovative features, user-friendly functionality and excellent customer support. Jonathan has been a key player in shaping the UK web hosting industry since 1997, having co-founded WebFusion with Tim Beresford.

Tags: , ,