Jellyflea Web Design

Jellyflea Web Design - A Houston Web Design Company

Need a totally custom website? Look no further!  Since 2006 Jellyflea Web Design has been serving the greater Houston area with custom web designs and database design.  Every design is custom and scalable to any size and budget.  Keeping pace with the growing trend for web applications, Jellyflea also creates custom website widgets, administrative backends, or any other custom data solution your business requires.

Offering a wide range of website hosting and email hosting products, Jellyflea is a ‘one-stop shopping’ experience, taking the guesswork out of the techie stuff.  Firmly grounded in Christian principles, Jellyflea treats each client with courtesy, respect, and patience through the design process and beyond.

Contact Jellyflea Web Design Today!
www.jellyflea.com
281-313-4866
Sugar Land TX

Add Product to WordPress/WP-eCommerce Website

Here’s a quick tutorial on how to add and edit products using the WP-eCommerce Plugin on a WordPress site.

Login as WordPress Admin

Go to Products–>Add New

Step 1 – Add Product Information

  1. Enter name of product in ‘title’
  2. Enter description of product in editor area
  3. Tag product to one or more categories
  4. If adding a new category, make certain that you assign it to the correct parent category.
  5. Enter Price the price of the product.  You may also enter a sale price if this item is currently on sale.
  6. Enter Shipping Weight and Dimensions or alternatively set a Flat Rate shipping amount for this product.  Make sure these setting are accurate to ensure a reliable shipping estimate for the customer at checkout time.
  7. Optionally enter SKU under Stock Control if you want the system to track inventory for this product.
  8. Taxes are typically setup in the Store Configuration and calculated automatically during the checkout process.

Step 2 – Adding Product Images

  1. Under ‘Product Images’ tab, click ‘Manage Product Images’.
  2. Choose the ‘From Computer’ tab
  3. Click ‘Select Files’ and choose one or more files you have stored on your hard drive
  4. Enter a short description of the product in the ‘Alternate Text’ field. Be sure to include a keyword or two for Search Engine Optimization purposes.
  5. Click the ‘Use as Product Thumbnail’ link
  6. Click ‘Save Changes’
  7. Exit by clicking outside the ‘Manage Your Product Images’ box

Click ‘Publish’ to add the product to your store, or select ‘Save Draft’ if you want to save changes, to publish later. Once saved you can click ‘View Product’ to view the item in the store as a customer sees it.

Don’t want to scroll? Consider the Alternatives

Often, clients will make the request that they don’t want to have their users scroll to view their website – they want all the content to be viewable on the screen.  Unfortunately, this is most often not a realistic request.  Here’s the reasons why:
  1. monitors are different sizes which affects the viewable window size
  2. a user can set a monitor to different resolutions which affects the viewable window size drastically
  3. some users increase the font size within their browser settings, which affects the viewable window size
  4. many users (unfortunately) install 1-3 toolbars on top of their browser, which eat up a significant amount of displayable ‘real estate’.

They might not like scrolling, but they will hate the alternatives!

Sometimes those reasons still aren’t enough to convince a client that this is a bad idea, so have them consider the alternatives:

  1. to have VERY little content – which isn’t the case for most sites.  This would have to be the case for ALL pages if you care anything for consistency in your design.
  2. having a window scroll within a window – which defeats the purpose and makes it a very unfriendly experience, particularly for mobile devices.
  3. scroll horizontally, which is obviously not a natural experience for most users.

Fix GIF Thumbnails with Black Background in WordPress

I have a few website that I’ve designed in WordPress using a shopping cart plugin, and then trained the owner how to insert new products along with images of the products.  After the client uploaded a hundred or so products we found that all the thumbnails WordPress automatically generated had black backgrounds.  All of the client’s images were gifs.  Here’s a quick fix:

Step 1 – Edit WordPress media.php

Edit the WordPress file /wp-includes/media.php and edit starting on line 422:
$newimage = wp_imagecreatetruecolor( $dst_w, $dst_h );
if(IMAGETYPE_GIF == $orig_type){
$black=imagecolorallocate($image, 0,0,0);
imagecolortransparent($image, $black);
}
imagecopyresampled( $newimage, $image, $dst_x, $dst_y, $src_x, $src_y, $dst_w, $dst_h, $src_w, $src_h);

This doesn’t preserve the tranparency, but sets the black background in the image to transparent just before the thumbnail is created. FYI, this will most likely be overwritten next time you update WordPress.

Step 2 – Regenerate Thumbnails

Step 1 only covers thumbnails that will be created in the future, so we need to regenerate the thumbnails. Luckily, you don’t have to do all of this manually, you can install the Regenerate Thumbnails plugin. Once you run that plugin, all your thumbnails should be fixed!

Sources: http://core.trac.wordpress.org/ticket/13461

How to Properly Structure Web Content

How to Structure Web Pages - Houston Web Design

Audience

This article is intended for people who use a content management system like WordPress to blog or create & maintain your website, but the overall concepts apply to all web design, regardless of what platform you use to create/manage your website.

 

Goals

  1. Create an ideal webpage structure for easy reading
  2. Maintain style consistency throughout entire site
  3. Help search engines understand what the web page is about

Structure your Web Page Like a Newspaper Article

A few key points:

  • The most important story a newspaper has is on the front page (think home page).  Other articles follow in order of importance.
  • If you were to read only the headings and subheadings of newspaper articles, you would have a fairly decent idea of what the story is about.  If you read the paragraphs below the headings, you get more detailed information as you go.

Use Heading Tags for SEO & Readability

Search engines look at your web page in a similar way – they assume if you put something in a heading tag (h1, h2, etc) then it’s probably important, and is a good indicator on what your web page is about.

If you use a content management system like WordPress, and you just make some words a different color and bigger, that doesn’t make it a heading (as far as a web designer or search engine sees things).  You must actually declare it as a heading tag, which is usually available under the ‘Format’ menu in the editor.

To create a heading tag:

  1. Highlight the words you want to make a heading
  2. Go to ‘Format’
  3. Select the desired heading tag

Typically you have the options for H1 (main heading) all the way through H6 (subheadings).

Why Using Heading Tags vs Manually Styling is Better

Manually styling headings without using heading tags is poor practice for a few reasons, namely:
  • Search engines won’t recognize it as being important text in relation to other paragraph text surrounding it.
  • Far more effort involved up front
  • Far more effort involved if you decide to change the color of every heading site-wide
  • Sloppy HTML

But How Can I Change the Color/Font/Size of the Headings?

Typically, that is a web designer’s job.  The font, color, size, etc of headings are declared in the cascading style sheets for the website.  A style sheet is a separate file that’s included on every page of your website that says, for example: “style all H1 tags as Times New Roman, 20px and blue”.

If you wrap all your main headings and subheadings in heading tags, your web designer can quickly & easily change the color, size, etc of all the heading tags for your entire site in one place, which is certainly easier than going through every single page of your website.

Companion Video

I created a companion video for this tutorial – looking to improve it over time, but this should help out!

Make Better Websites

Make Better Websites - Web Design Houston

I stumbled upon a cool website called ‘Make Better Websites’ (www.makebetterwebsites.com) that is more or less just a collection of sites the team puts together for web design inspiration.  Some of the designs are fairly straight-forward, and some are really out of the box, but all of them are visually appealing, professional, and easy to navigate.  Check it out next time you find yourself coming up with something fresh!

If you have a website design that you think should be showcased on the site, they have a submit form where you can enter your design for consideration.

© Copyright Kyle W. Henderson – Web Designer Houston Web Design