www.gurneys.com Open in urlscan Pro
23.20.103.98  Public Scan

Submitted URL: http://gurneys.com/
Effective URL: https://www.gurneys.com/
Submission: On January 03 via manual from IN — Scanned from DE

Form analysis 8 forms found in the DOM

Name: searchGET /search

<form action="/search" method="get" name="search">
  <label for="searchinput-fixed" style="font-size:0px; color: rgba(0,0,0,0);display:none;">Search Item Number or Keyword</label>
  <div class="search_box ng-scope" ss-nav="">
    <input type="text" class="searchinput ng-scope" aria-autocomplete="list" role="status" aria-live="polite" id="searchinput-fixed" name="keyword" placeholder="Item Number or Keywords" autocomplete="off" ss-nav-input="" ng-non-bindable=""
      spellcheck="false"><!-- ngIf: ac.ready --><input type="submit" id="Search-fixed" value="Search" class="searchicon">
  </div>
</form>

Name: searchGET /search

<form action="/search" method="get" name="search">
  <label for="searchinput-floating" style="font-size:0px; color: rgba(0,0,0,0);display:none;">Search Item Number or Keyword</label>
  <div class="search_box ng-scope" ss-nav="">
    <input type="text" class="searchinput ng-scope" aria-autocomplete="list" role="status" aria-live="polite" id="searchinput-floating" name="keyword" placeholder="Item Number or Keywords" autocomplete="off" ss-nav-input="" ng-non-bindable=""
      spellcheck="false"><!-- ngIf: ac.ready --><input type="submit" id="Search-floating" value="Search" class="searchicon">
  </div>
</form>

Name: searchGET /search

<form action="/search" method="get" name="search">
  <label for="searchinput-mobile" style="font-size:0px; color: rgba(0,0,0,0);display:none;">Search Item Number or Keyword</label>
  <div class="search_box ng-scope" ss-nav="">
    <input type="text" class="searchinput ng-scope" aria-autocomplete="list" role="status" aria-live="polite" id="searchinput-mobile" name="keyword" placeholder="Item Number or Keywords" autocomplete="off" ss-nav-input="" ng-non-bindable=""
      spellcheck="false"><!-- ngIf: ac.ready --><input type="submit" id="Search-mobile" value="Search" class="searchicon">
  </div>
</form>

GET /

<form method="get" action="/" id="shopZoneHomeFormSubmit" onsubmit="return handleShopHomeZone();">
  <label for="shopZoneHomeZipcode" style="font-size:15px; color:#282828;display: block;margin:0 0 10px;">Enter Zip Code:</label>
  <input type="text" name="shopZoneHomeZipcode" id="shopZoneHomeZipcode" placeholder="Enter zip code" class="zip_inp" maxlength="6">
  <input type="submit" value="GO" class="button_green">
</form>

POST /

<form method="post" action="/" id="shopHomeZoneFormSubmit" onsubmit="return handleShopHomeZonesplit();">
  <label for="shopZoneHomeZipcode" style="font-size:1px; color:#f0f2e3;">Zipcode</label>
  <input type="number" pattern="[0-9]*" name="shopZoneHomeZipcodesplit" id="shopZoneHomeZipcodesplit" maxlength="50">
  <input type="submit" value="Find My Zone" class="button_green text_uppercase">
</form>

GET /

<form method="get" action="/">
  <label for="p" style="font-size:0px; color:#598901;">Keycode</label>
  <input type="text" id="p" name="p" value="Enter Offer #" onfocus="if (this.value == 'Enter Offer #')this.value='';" onblur="if (this.value=='') this.value='Enter Offer #';" style="width:130px; margin:5px 0;">
  <input type="submit" name="submit" class="button_green" value="GO">
</form>

Name: newsletterPOST /newsletter?p=0576073

<form method="post" action="/newsletter?p=0576073" id="newsletter1" name="newsletter" class="emailtracker footnewsletter"><input type="hidden" name="csrf_token" value="442784098061cb836e67c992de1086f1">
  <input type="hidden" name="secure_form" value="1">
  <input type="hidden" name="method" value="emailsignup">
  <input type="hidden" name="to_email" value="me@domain.com">
  <input type="hidden" name="from_email" value="service@gurneys.com">
  <input type="hidden" name="location" value="homepage:footer">
  <input type="hidden" name="Last_Optin_Date" value="01/03/2024">
  <input type="hidden" name="Last_Optin_Source" class="textInput defaultText" value="website">
  <input type="hidden" name="marketing_cat" value="Newsletter Requests">
  <label for="add_email1" class="visually-hidden" style="visibility:hidden;font-size:1px;display:block">Receive Our Emails</label>
  <input type="text" id="add_email1" name="add_email" size="15"> <input type="hidden" id="recaptcha-response-newsletter_requestnewsletter1" name="g-recaptcha-response" value="">
  <script src="https://www.google.com/recaptcha/api.js?render=6LekLuIUAAAAAH6d-YrgH1IFc23p2ZtpWA8rNvzs"></script>
  <script>
    var submitted_newsletter_requestnewsletter1 = false;
    $('#newsletter1').on('submit', function(e) {
      if (!submitted_newsletter_requestnewsletter1) {
        e.preventDefault();
        var thisform = $(this);
        console.log(thisform);
        if (thisform.valid()) {
          var cemailid = document.getElementById("add_email1").value;
          $.getJSON("/email-verify", {
            address: cemailid,
            bv_token: "zJ+hULywQj26Rle6auBoFffHKIDNMwlvQfGuFqgkU/xGG52uFT/p1A== "
          }, function(data) {
            if (data.email == null || data.email.status == "invalid") {
              $("#emailerrorfoot").show();
            } else {
              $("#add_email1").val(cemailid);
              window.dataLayer = window.dataLayer || [];
              window.dataLayer.push({
                'sessionemail': document.getElementById('add_email1').value,
                'event': 'new_subscriber',
                'formLocation': 'footer'
              });
              grecaptcha.ready(function() {
                grecaptcha.execute('6LekLuIUAAAAAH6d-YrgH1IFc23p2ZtpWA8rNvzs', {
                  action: 'newsletter_request'
                }).then(function(token) {
                  submitted_newsletter_requestnewsletter1 = true;
                  $('#recaptcha-response-newsletter_requestnewsletter1').val(token);
                  //alert(token);
                  thisform.trigger('submit');
                });
              });
            }
          });
        }
      }
    });
  </script>
  <input type="submit" name="submit_request" value="Subscribe" class="button_red">
</form>

POST

<form method="POST" id="promo_form" action="" novalidate="novalidate"> <label for="promo_code" style="font-size:1px;color:#FFF;display: block;">Submit</label>
  <input type="text" name="p" id="promo_code" class="apply_input" value="Enter Code" onfocus="if (this.value=='Enter Code') this.value='';" onblur="if (this.value=='') this.value='Enter Code';"><input type="submit" name="promo_submit"
    id="promo_submit" value="GO" class="button_green text_uppercase button-apply">
  <label for="promo_submit" style="font-size:1px;color:#FFF;display: block;">Submit</label>
</form>

Text Content

Press Alt+1 for screen-reader mode, Alt+0 to cancelAccessibility Screen-Reader
Guide, Feedback, and Issue Reporting
 * Close X
 * Hello! Sign In
 * View Cart
 * Past Orders
 * Update Account
 * Change Password
 * Easy Reorder
 * Catalog Quick Order
 * Shop Categories
 * Vegetables
    * Shop All
    *   Asparagus
       * Shop All
       *     Southern Grove Asparagus
   
    *   Beans
       * Shop All
       *     Bush Bean Seeds
       *     Pole Bean Seeds
       *     Southern Grove Beans
   
    *   Beets
       * Shop All
       *     Southern Grove Beets
   
    *   Broccoli
       * Shop All
       *     Southern Grove Broccoli
   
    *   Brussels Sprouts
       * Shop All
       *     Southern Grove Brussels Sprouts
   
    *   Cabbage
       * Shop All
       *     Southern Grove Cabbage
   
    *   Carrots
       * Shop All
       *     Southern Grove Carrots
   
    *   Cauliflower
       * Shop All
       *     Southern Grove Cauliflower
   
    *   Chard
       * Shop All
       *     Southern Grove Chard
   
    *   Cole Crops
    *   Corn
       * Shop All
       *     Southern Grove Corn
       *     Normal Sugary (su)
       *     Sugary-Enhanced (se)
       *     Super-Sweet Hybrids (sh2)
       *     Synergistic (syn)
       *     White
       *     Yellow
       *     Bi-Color
       *     Multi-Color
   
    *   Cucumbers
       * Shop All
       *     Pickling Cucumbers
       *     Slicing Cucumbers
       *     Southern Grove Cucumbers
   
    *   Eggplant
       * Shop All
       *     Southern Grove Eggplant
   
    *   Garlic
    *   Gourds
       * Shop All
       *     Southern Grove Gourds
   
    *   Greens
       * Shop All
       *     Southern Grove Greens
   
    *   Heirloom Vegetables
       * Shop All
   
    *   Herbs
       * Shop All
       *     Basil Seeds & Plants
   
    *   Kale
       * Shop All
       *     Southern Grove Kale
   
    *   Kohlrabi
       * Shop All
       *     Southern Grove Kohlrabi
   
    *   Lettuce
       * Shop All
       *     Southern Grove Lettuce
   
    *   Okra
       * Shop All
       *     Southern Grove Okra
   
    *   Onions
       * Shop All
       *     Southern Grove Onions
   
    *   Peas
       * Shop All
       *     Southern Grove Peas
   
    *   Peas - Southern
       * Shop All
       *     Southern Grove Peas - Southern
   
    *   Peppers
       * Shop All
       *     Hot Peppers
          * Shop All
          *     Jalapeno Hot Peppers and Seeds
      
       *     Sweet Peppers
       *     Southern Grove Peppers
   
    *   Potatoes
       * Shop All
   
    *   Pumpkins
       * Shop All
       *     Southern Grove Pumpkins
   
    *   Radishes
       * Shop All
       *     Southern Grove Radishes
   
    *   Rhubarb
       * Shop All
       *     Southern Grove Rhubarb
   
    *   Root Crops
       * Shop All
       *     Southern Grove Root Crops
   
    *   Seed Tape
       * Shop All
       *     Southern Grove Seed Tape
   
    *   Spinach
       * Shop All
       *     Southern Grove Spinach
   
    *   Sprouts/Microgreens
    *   Squash
       * Shop All
       *     Squash - Summer
       *     Squash - Winter
       *     Southern Grove Squash
   
    *   Sweet Potatoes
       * Shop All
   
    *   Tomatoes
       * Shop All
       *     Hybrid Tomatoes
       *     Tomato - Open-Pollinated
       *     Determinate Tomatoes
       *     Indeterminate Tomatoes
       *     Southern Grove Tomatoes
       *     Grape Tomatoes - Seeds & Plants

 * Fruits
    * Shop All
    *   Apple Trees
       * Shop All
   
    *   Apricots, Nectacots and Nectarines
       * Shop All
   
    *   Berry Plants
    *   Blackberries
       * Shop All
       *     Southern Grove Blackberries
   
    *   Blueberries
       * Shop All
       *     Southern Grove Blueberries
   
    *   Cherry Trees
       * Shop All
       *     Southern Grove Cherry Trees
   
    *   Grape Vines & Plants
       * Shop All
   
    *   Native & Unique Fruits
       * Shop All
       *     Southern Grove Native & Unique Fruits
   
    *   Peach Trees
       * Shop All
   
    *   Pear Trees
       * Shop All
   
    *   Raspberry Plants
       * Shop All
       *     Southern Grove Raspberries
       *     Black Raspberries
       *     Golden Raspberries
   
    *   Strawberry Plants
       * Shop All
       *     Southern Grove Strawberries
   
    *   Tropicals & Houseplants
    *   Melon
       * Shop All
       *     Cantaloupe Seed
       *     Watermelon Seed
       *     Southern Grove Melons
   
    *   Fruit Trees

 * Perennials, Bulbs & Flowers
    * Shop All
    *   All Bulbs
    *   Flower Seed
       * Shop All
       *     Cosmos
          * Shop All
          *     Southern Grove Cosmos
      
       *     Cut Flowers
       *     Deer Resistant
       *     Fragrant Flowers
       *     Wildflowers
          * Shop All
          *     Southern Grove Wildflowers
      
       *     Marigold Seed
       *     Pollinator Seeds
       *     Sunflowers
          * Shop All
          *     Southern Grove Sunflowers
      
       *     Southern Grove All Flower Seed
       *     Zinnia Seed
       *     Pest Control
   
    *   All Perennials
       * Shop All
       *     Southern Grove All Perennials
   
    *   Shade Perennials
       * Shop All
       *     Southern Grove Shade Perennials
   
    *   Sun Perennials
       * Shop All
       *     Southern Grove Sun Perennials
   
    *   Grass Seed
    *   Daylilies
    *   Groundcovers
    *   Iris
    *   Lilies
    *   Ornamental Grasses
       * Shop All
       *     Southern Grove Ornamental Grasses
   
    *   Peony Plants
    *   Roses
       * Shop All
       *     Southern Grove Roses
   
    *   Tulips
    *   Vines & Climbers
       * Shop All
       *     Southern Grove Vines & Climbers

 * Trees & Shrubs
    * Shop All
    *   Fast Growing Trees
       * Shop All
       *     Privacy Trees
       *     Southern Grove Fast Growing Trees
   
    *   Hedges
       * Shop All
       *     Flowering
       *     Winter Interest
       *     Attracts Pollinators
       *     Windbreaks
       *     Deer Resistant
       *     Privacy
       *     Southern Grove Hedges
   
    *   Hydrangea
       * Shop All
   
    *   Lilacs
       * Shop All
       *     Southern Grove Lilacs
   
    *   Shade Trees
    *   Shrubs
       * Shop All
       *     Southern Grove Shrubs
   
    *   Trees
       * Shop All

 * Gardens Alive! & Supplies
    * Shop All
    *   Composting Aids
    *   Container Gardening
    *   Foods & Fertilizers
    *   Garden Animal Control
    *   Gardens Alive! Insect Control
    *   Gardening Aids
    *   Grow Tubs
    *   Harvesting & Kitchen Supplies
    *   Plant Disease Control
    *   Season Extenders
    *   Seed Starting Supplies
       * Shop All
   
    *   Lawn
       * Shop All
       *     Fertilizer
       *     Grass Seed
   
    *   Soil Amendments
    *   Plant Supports
    *   Tools & Supplies

 * New This Season
    * Shop All

 * Gurney's Choice
    * Shop All
    *   Fruit, Melons & Berries
    *   Vegetables
    *   Root Crops
    *   Supplies Only At Gurney's

 * Niles' Favorites
 * Only From Gurney's
 * Deer Resistant Plants
 * Holiday Gift Ideas

Search Item Number or Keyword

Account Hello! Sign In |
Cart
0 Item(s) $0.00
 * New
 * Vegetables
   * * Asparagus
     * Beans
     * Beets
     * Broccoli
     * Brussels Sprouts
     * Cabbage
     * Carrots
     * Cauliflower
     * Chard
     * Cole Crops
     * Corn
     * Cucumbers
     * Eggplant
   * * Garlic
     * Gourds
     * Greens
     * Heirloom Vegetables
     * Herbs
     * Kale
     * Kohlrabi
     * Lettuce
     * Okra
     * Onions
     * Peas
     * Peas - Southern
     * Peppers
   * * Potatoes
     * Pumpkins
     * Radishes
     * Rhubarb
     * Root Crops
     * Seed Tape
     * Spinach
     * Sprouts & Microgreens
     * Squash
     * Sweet Potatoes
     * Tomatoes
   * Vegetables
 * Fruits
   * * Apple Trees
     * Apricots, Nectacots & Nectarine Trees
     * Blackberries
     * Blueberries
     * Cherry Trees
     * Grape Vines & Plants
     * Melon
     * Native & Unique Fruits
   * * Peach Trees
     * Pear Trees
     * Raspberries
     * Strawberries
     * Tropicals & Houseplants
     * Watermelon Seed
     * All Berry Plants
     * All Fruit Trees
   * Fruits
 * Herbs
 * Perennials, Bulbs & Flowers
   * * All Bulbs
     * Flower Seed
     * All Perennials
     * Cosmos
     * Cut Flowers
     * Daylilies
     * Deer Resistant
     * Grass Seed
     * Groundcovers
     * Iris
     * Lilies
   * * Marigold
     * Ornamental Grasses
     * Peony Plants
     * Roses
     * Shade Perennials
     * Sun Perennials
     * Sunflowers
     * Vines & Climbers
     * Wildflowers
     * Zinnia
   * Perennials, Bulbs & Flowers
 * Trees & Shrubs
   * * Fast Growing Trees
     * Hedges
     * Hydrangea
     * Lilacs
     * Shade Trees
     * Shrubs
     * Trees
   * Trees & Shrubs
 * Gardens Alive! & Supplies
   * * Composting Aids
     * Container Gardening
     * Foods & Fertilizers
     * Garden Animal Control
     * Garden Insect Control
     * Gardening Aids
     * Lawn
     * Fertilizer
     * Grass Seed
   * * Grow Tubs
     * Harvesting & Kitchen Supplies
     * Plant Disease Control
     * Season Extenders
     * Seed Starting Supplies
     * Soil Amendments
     * Plant Supports
     * Tools & Supplies
   * Gardens Alive! & Supplies
 * Only From Gurney's
 * Gardening Resources
   * * U.S. Hardiness Zones
     * Gardening Guides
     * Gardening Videos
     * Gurney's Blog
     * Recipes
   * Gardening Resources

Menu

X


Search Item Number or Keyword

 * Live Help
   x (513) 354-1492
 * Quick Order
 * Catalog Request
 * Order Status

Account Hello! Sign In |
Cart
0 Item(s) $0.00

Shopping Cart

0 items in cart



Welcome to Gurneys! Free $25 off any order of $50 or more TODAY! Click hereX
 * 
 * 
 * 
 * Cart
   0

Search Item Number or Keyword

 * New
 * Vegetables
   * * Asparagus
     * Beans
     * Beets
     * Broccoli
     * Brussels Sprouts
     * Cabbage
     * Carrots
     * Cauliflower
     * Chard
     * Cole Crops
     * Corn
     * Cucumbers
     * Eggplant
   * * Garlic
     * Gourds
     * Greens
     * Heirloom Vegetables
     * Herbs
     * Kale
     * Kohlrabi
     * Lettuce
     * Okra
     * Onions
     * Peas
     * Peas - Southern
     * Peppers
   * * Potatoes
     * Pumpkins
     * Radishes
     * Rhubarb
     * Root Crops
     * Seed Tape
     * Spinach
     * Sprouts & Microgreens
     * Squash
     * Sweet Potatoes
     * Tomatoes
   * Vegetables
 * Fruits
   * * Apple Trees
     * Apricots, Nectacots & Nectarine Trees
     * Blackberries
     * Blueberries
     * Cherry Trees
     * Grape Vines & Plants
     * Melon
     * Native & Unique Fruits
   * * Peach Trees
     * Pear Trees
     * Raspberries
     * Strawberries
     * Tropicals & Houseplants
     * Watermelon Seed
     * All Berry Plants
     * All Fruit Trees
   * Fruits
 * Herbs
 * Perennials, Bulbs & Flowers
   * * All Bulbs
     * Flower Seed
     * All Perennials
     * Cosmos
     * Cut Flowers
     * Daylilies
     * Deer Resistant
     * Grass Seed
     * Groundcovers
     * Iris
     * Lilies
   * * Marigold
     * Ornamental Grasses
     * Peony Plants
     * Roses
     * Shade Perennials
     * Sun Perennials
     * Sunflowers
     * Vines & Climbers
     * Wildflowers
     * Zinnia
   * Perennials, Bulbs & Flowers
 * Trees & Shrubs
   * * Fast Growing Trees
     * Hedges
     * Hydrangea
     * Lilacs
     * Shade Trees
     * Shrubs
     * Trees
   * Trees & Shrubs
 * Gardens Alive! & Supplies
   * * Composting Aids
     * Container Gardening
     * Foods & Fertilizers
     * Garden Animal Control
     * Garden Insect Control
     * Gardening Aids
     * Lawn
     * Fertilizer
     * Grass Seed
   * * Grow Tubs
     * Harvesting & Kitchen Supplies
     * Plant Disease Control
     * Season Extenders
     * Seed Starting Supplies
     * Soil Amendments
     * Plant Supports
     * Tools & Supplies
   * Gardens Alive! & Supplies
 * Only From Gurney's
 * Gardening Resources
   * * U.S. Hardiness Zones
     * Gardening Guides
     * Gardening Videos
     * Gurney's Blog
     * Recipes
   * Gardening Resources

Menu


GURNEY'S

Plant Something Truly Special

Only From Gurney's

Shop Now
Since 1866, customers have come to respect the products and the promise of
service from
Gurney's Seed and Nursery Co.
Shop For your Zone
Lawrenceburg, IN 47025 I'm gardening elsewhere.
ZONE 6a

Enter Zip Code:
X


PRO TIPS & RESOURCES

Gardening Guides
Video Library


HEAR NILES TALK ABOUT WHY HE LOVES
GOTTA HAVE IT!® SWEET CORN

Your browser does not support the audio element.
Listen to More of Niles' Favorites
No Risk Guarantee
Safe Seed Pledge
We want you to be satisfied so we have a No Risk Guarantee.
Since 1866, customers have come to respect the products and the promise of
service from Gurney's Seed and Nursery Co.
We have said no to GMO and signed the Safe Seed Pledge.


YOUR GARDEN ZONE:

ZONE6a
Lawrenceburg, IN 47025
Shop My Zone CLICK HERE TO CHANGE ZONE
Enter Zip Code:
Zipcode
X


PLANTS THAT THRIVE IN MY ZONE 6A

Goldrush Bush Bean Seed

$7.99 - $13.99
Okra Jing Orange Seed

$5.99
Portento Hybrid Tuscan Melon

$8.99
Black Bellota Hybrid Acorn Winter Squash Seeds

$5.99
Angel Face Floribunda Rose Plant

$29.99 - $69.99
Queen Elizabeth Grandiflora Rose

$29.99 - $69.99
Golden Bear Sunflower Seed

$3.99
ProCut Orange Hybrid Sunflower Seed

$3.99
Garden Sentinel™ Organic Broad-Spectrum Biofungicide

$24.99 - $29.99
Jimmy Red Dent Corn Seed

$6.99
PreviousNext


Shop My Zone

Customer Favorites

Foods & Fertilizers

Gurney's Choice

New


SPRING SEASON FAVORITES

Tomatoes
Potatoes
Strawberries


"THE STORY OF GURNEY'S
STARTS SMALL..."


Your browser does not support HTML5 video.
X

We constantly seek out the latest advancements in horticulture to bring you
exclusive varieties that will thrive in today's climates and taste better than
anything you will find at the grocery store.

Shop All Exclusives

AsparaBest™ Asparagus Plant

Produces up to 3 Times More Spears!



KangaRhu™ Rhubarb

Cooks up Brilliant Red



Sweet Giant Blackberry

High yields of huge berries



Gurney's® Premium Lettuce Seed Blend

Colorful Blend of Various Textures and Shapes




VEGETABLES

Shop All Vegetables »
A selection of our favorite vegetables!
Garlic
Onions
Lettuce
Carrot Seeds
Beets
Asparagus
Beans
Broccoli
Cabbage
Chard
Cole Crops
Corn
Cucumbers
Eggplant
Gourds
Greens
Heirloom Vegetables
Herbs
Kale
Melon
Okra
Peas
Peas - Southern
Peppers
Potatoes
Pumpkins
Radish
Rhubarb
Root Crops
Seed Tape
Spinach
Sprouts & Microgreens
Squash
Sweet Potatoes
Tomatoes
PreviousNext



FRUIT

Shop All Fruit »
Juicy fruit bursting with summertime flavor!
Blueberries
Strawberries
Blackberries
Raspberries
Cherry Trees
Apple Trees
Apricots, Nectacots and Nectarines
Fig Trees
Grape Vines & Plants
Jujubes
Native & Unique Fruits
Peaches
Pears
Plums
Tropicals & House Plants
PreviousNext



PERENNIALS, BULBS & FLOWERS

Shop All Perennials, Bulbs & Flowers »
A selection of our Perennials, Bulbs & Flowers!
Sun Perennials
Shade Perennials
All Flower Seed
Roses
Groundcovers
All Bulbs
All Perennials
Grass Seed
Ornamental Grasses
Sunflowers
Vines & Climbers
Wildflowers
PreviousNext



TREES & SHRUBS

Shop All Trees & Shrubs »
A selection of our Trees & Shrubs
Shrubs
Hydrangea
Hedges
Nut Trees
Flowering Trees
Crape Myrtle
Fast Growing Trees
Lilacs
Roses
Shade Trees
Trees
PreviousNext

Vegetables
Fruit
Perennials, Bulbs & Flowers
Trees & Shrubs


TRY US IN YOUR GARDEN. THEY DID!

Mention @gurneysseed or hashtag #gurneysseed for your chance to be featured.

Follow Us

Add Your Photo


CHECK OUT OUR GUIDES FOR TIPS AND TRICKS!

Planting Your Vegetable Garden

Before you put any plants into the ground, you should draw a sketch of the
garden area so you can plan how many plants you want and where they will go...

Read More » How to Plant and Care for Fruit Trees

Plant fruit trees as advised in Easy Steps to Planting Nursery Stock, following
the spacing recommendations below. This spacing, less than 50 feet apart...

Read More » About Bareroot Perennials

There are five basic types of root systems: fibrous roots, long tap roots,
rhizomes, roots with "eyes", and fleshy tuberous roots Fibrous Roots, Long
Tap...

Read More » Easy Steps To Planting Nursery Stock

Soak roots of trees, shrubs and roses for several hours before planting. Soak
strawberries and perennials ½ hour. If you can't plant immediately, see No. 3...

Read More »


LEARN MORE ABOUT DORMANT PLANTS

Grow healthier, more resilient plants with dormant and bareroot stock!


Read More »


WHAT OUR CUSTOMERS ARE SAYING...




ORDER STATUS

Check on your orders

Click Here >>


SHIPPING INFORMATION

Product shipping information for your zone.

Click Here >>


HAVE A CATALOG OFFER CODE?

Enter to activate your savings.

Keycode
 * Customer Service (513) 354-1492

CUSTOMER SERVICE

 * Catalog Request
 * Easy Reorder
 * Gift/Replacement Certificate Inquiry
 * Contact Us
 * Help & FAQ
 * Shipping Information
 * How Our Plants Are Shipped
 * Gardening Guarantee
 * Privacy & Security
 * California/Nevada Privacy Rights
 * Site Map

GARDENING RESOURCES

 * Questions? Ask Us!
 * U.S. Hardiness Zones
 * Gardening Guides
 * Gardening Videos
 * Gurney's Blog
 * Recipes
 * Gurney's Digital Catalog

ABOUT GURNEY'S

 * About Us!
 * The Gurney's Farm

FOLLOW US ON SOCIAL

 * 
 * 

JOIN OUR MAILING LIST

Subscribe to our email list to receive best offer.

Receive Our Emails
Oops, there seems to be an error, please re-enter your email address.

 * Customer Service
   * Catalog Request
   * Join Our Mailing List
   * Gift/Replacement Certificate Inquiry
   * Order Status
   * Contact Us
 * Gardening Resources
   * Gardening Videos
   * Vegetable Library
   * Fruit Library
   * Perennials Library
   * Trees Library
   * Shrubs Library
   * Seeds Library
   * Gurney's Blog
   * Recipes
   * U.S. Hardiness Zones
   * Gurney's Digital Catalog
 * About Gurney's
   * About Us
   * The Gurney's Farm
   * Help & FAQ
   * Shipping Information
   * How Our Plants Are Shipped
   * Gardening Guarantee
   * Privacy & Security
   * California/Nevada Privacy Rights
   * Site Map


Copyright © 2024 Gardens Alive!, d/b/a Gurney's Seed and Nursery Co. All Rights
Reserved. Gurney's trademarks are registered trademarks of Gardens Alive! This
site is protected by reCAPTCHA and Google Privacy Policy and Terms apply.
Up




Your offer code has been applied

Apply Offer Code

Submit Submit



X

Item added to cart







Welcome to Gurney's®


FREE SHIPPING ON ANY ORDER OF $75 OR MORE TODAY!

Enter Email Address
Validating Your Email Address...
Oops, there seems to be an error, please re-enter your email address.
X