martinellis.com

Обзор веб-сайта martinellis.com

S. Martinelli & Co: 100% Apple Juice & Sparkling Cider Since 1868

 Сгенерирован 02 Мая 2026 19:34

Устаревшие данные? ОБНОВИТЬ !

Набрано баллов: 50/100

СЕО Контент

Заголовок страницы

S. Martinelli & Co: 100% Apple Juice & Sparkling Cider Since 1868

Длина : 65

Замечательно, Ваш заголовок страницы содержит от 10 до 70 символов.

Описание страницы

Since 1868, S. Martinelli & Co has been producing delicious apple juice and sparkling ciders made from U.S. grown apples. Explore the world of our Gold Medal brand.

Длина : 164

В идеале, Ваше описание страницы должено содержать от 70 до 160 символов (вместе с пробелами). Используйте этот бесплатный инструмент для подсчета длины символов в тексте.

Ключевые слова

Очень плохо. Мы не нашли ключевых слов на Вашем веб-сайте. Используйте бесплатный генератор мета-тэгов, чтобы сгенерировать ключевые слова.

Og Meta Properties

Замечательно, Вы используете преимущества Og Properties.

Свойство Контент
locale en_US
type website
title S. Martinelli & Co: 100% Apple Juice & Sparkling Cider Since 1868
description Since 1868, S. Martinelli & Co has been producing delicious apple juice and sparkling ciders made from U.S. grown apples. Explore the world of our Gold Medal brand.
url https://www.martinellis.com/
site_name Martinelli's
image https://www.martinellis.com/wp/wp-content/uploads/2016/08/fb-homepage.jpg

Заголовки

H1 H2 H3 H4 H5 H6
0 3 8 0 0 0
  • [H2] Visit Our Company Store & Tasting Room in Watsonville, CA
  • [H2] Fresh From the Orchard
  • [H2] Subscribe to Our Newsletter
  • [H3] ').html(content); $labelHeadingTwo.replaceWith($newLabelHeadingTwo); } }, 2000); }); $(document).ready(function() { setTimeout(function() { if ($('[for="shipping_country"]').length) { var $labelHeading = $('[for="shipping_country"]'); var content = $labelHeading.html(); var $newLabelHeading = $('').html(content); $labelHeading.replaceWith($newLabelHeading); } }, 2000); }); // Required fields fix - Checkout $(document).ready(function() { setTimeout(function() { if ($('form.checkout').length) { $('#billing_first_name, #billing_last_name, #billing_address_1, #billing_address_2, #billing_city, #billing_phone, #billing_email, #wc-authorize-net-aim-account-number, #wc-authorize-net-aim-expiry, #wc-authorize-net-aim-csc, #terms').attr('aria-required', 'true'); $('#billing_first_name').attr('aria-describedby', 'billing_first_name_error').after('First name is required'); $('#billing_last_name').attr('aria-describedby', 'billing_last_name_error').after('Last name is required'); $('#billing_address_1').attr('aria-describedby', 'billing_address_1_error').after('Street Address is required'); $('#billing_city').attr('aria-describedby', 'billing_city_error').after('Town / City is required'); $('#billing_postcode').attr('aria-describedby', 'billing_postcode_error').after('ZIP Code is required'); $('#billing_phone').attr('aria-describedby', 'billing_phone_error').after('Phone is required'); $('#billing_email').attr('aria-describedby', 'billing_email_error').after('Email is required in the format name@address.com'); $('#shipping_first_name').attr('aria-describedby', 'shipping_first_name_error').after('First name is required'); $('#shipping_last_name').attr('aria-describedby', 'shipping_last_name_error').after('Last name is required'); $('#shipping_address_1').attr('aria-describedby', 'shipping_address_1_error').after('Street Address is required'); $('#shipping_city').attr('aria-describedby', 'shipping_city_error').after('Town / City is required'); $('#shipping_postcode').attr('aria-describedby', 'shipping_postcode_error').after('ZIP Code is required'); $('#shipping_phone').attr('aria-describedby', 'shipping_phone_error').after('Phone is required'); $('#shipping_email').attr('aria-describedby', 'shipping_email_error').after('Email Address is required'); $('#terms').attr('aria-describedby', 'terms_error') $('.form-row.terms').append('I’ve read and accept the web store policy is required'); // $('#wc-authorize-net-aim-account-number').attr('aria-describedby', 'card_number_error').after('Card Number is required (it must be valid credit card number)'); // $('#wc-authorize-net-aim-expiry').attr('aria-describedby', 'expiration_error').after('Expiration is required'); // $('#wc-authorize-net-aim-csc').attr('aria-describedby', 'card_security_error').after('Card Security Code is required'); // Validation $('form.checkout [aria-required="true"]').attr('aria-invalid', 'false'); // $('form.checkout #wc-authorize-net-aim-credit-card-form p[class*="invalid"] input').attr('aria-invalid', 'true'); const pTags = document.querySelectorAll('form.checkout p'); const observer = new MutationObserver(function (mutationsList) { mutationsList.forEach(function (mutation) { if (mutation.type === 'attributes' && mutation.attributeName === 'class') { const pTag = mutation.target; const classList = pTag.classList; const inputElement = pTag.querySelector('input'); const containsInvalid = Array.from(classList).some(className => className.includes('invalid')); if (inputElement) { inputElement.setAttribute('aria-invalid', containsInvalid); } } }); }); // Start observing changes in class pTags.forEach(function (pTag) { observer.observe(pTag, { attributes: true }); }); // Payment validation const callback = function (mutationsList, observer) { for (const mutation of mutationsList) { if (mutation.addedNodes.length) { $(mutation.addedNodes).each(function () { if ($(this).hasClass('woocommerce-error')) { $(".woocommerce-error").attr('role', 'alert'); const liElements = document.querySelectorAll('li'); liElements.forEach(li => { if (li.textContent.includes('Card number is missing')) { const a = document.createElement('a'); a.id = 'znt-credit-card-error-1'; a.href = '#wc-authorize-net-aim-account-number'; a.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(a); $("#wc-authorize-net-aim-account-number").attr('aria-describedby', 'znt-credit-card-error-1'); $('form.checkout #wc-authorize-net-aim-account-number').attr('aria-invalid', 'true'); } const liElements = document.getElementsByTagName('li'); for (let i = 0; i < liElements.length; i++) { const li = liElements[i]; if (li.textContent.includes('Card number is invalid (wrong length)')) { // Remove the element li.remove(); break; } } if (li.textContent.includes('Card number is invalid')) { const a = document.createElement('a'); a.id = 'znt-credit-card-error-1-2'; a.href = '#wc-authorize-net-aim-account-number'; a.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(a); $("#wc-authorize-net-aim-account-number").attr('aria-describedby', 'znt-credit-card-error-1-2'); $('form.checkout #wc-authorize-net-aim-account-number').attr('aria-invalid', 'true'); } if (li.textContent.includes('Card expiration date is invalid')) { const a = document.createElement('a'); a.id = 'znt-credit-card-error-2'; a.href = '#wc-authorize-net-aim-expiry'; a.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(a); $("#wc-authorize-net-aim-expiry").attr('aria-describedby', 'znt-credit-card-error-2'); $('form.checkout #wc-authorize-net-aim-expiry').attr('aria-invalid', 'true'); } if (li.textContent.includes('Card security code is missing')) { const a = document.createElement('a'); a.id = 'znt-credit-card-error-3'; a.href = '#wc-authorize-net-aim-csc'; a.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(a); $("#wc-authorize-net-aim-csc").attr('aria-describedby', 'znt-credit-card-error-3'); $('form.checkout #wc-authorize-net-aim-csc').attr('aria-invalid', 'true'); } if (li.textContent.includes('Card security code is invalid (must be 3 or 4 digits)')) { const a = document.createElement('a'); a.id = 'znt-credit-card-error-3-2'; a.href = '#wc-authorize-net-aim-csc'; a.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(a); $("#wc-authorize-net-aim-csc").attr('aria-describedby', 'znt-credit-card-error-3-2'); $('form.checkout #wc-authorize-net-aim-csc').attr('aria-invalid', 'true'); } if (li.textContent.includes('oupon')) { const p = document.createElement('p'); p.id = 'znt-credit-card-error-cupon'; p.innerHTML = li.innerHTML; li.innerHTML = ''; li.appendChild(p); $("#coupon_code").attr('aria-describedby', 'znt-credit-card-error-cupon'); $('#coupon_code').attr('aria-invalid', 'true'); var couponCode = $('#coupon_code'); if (couponCode.attr('aria-invalid') === 'true') { $('#znt-form_01').addClass('f-block'); } else { $('#znt-form_01').removeClass('f-block'); } setTimeout(function() { $('#coupon_code').focus(); console.log("1 second has passed!"); }, 1000); } }); $(document).ready(function() { if ($('form.checkout').length) { $('p.form-row').each(function() { var $p = $(this); var content = $p.html(); var classes = $p.attr('class'); var $div = $('').append(content).addClass(classes); $p.replaceWith($div); }); } }); $(document).ready(function() { // Add classes to form rows with empty inputs // $('div.form-row input').each(function() { // if ($(this).val() === '') { // $(this).closest('div.form-row').addClass('woocommerce-invalid woocommerce-invalid-required-field'); // } // }); $('div.form-row input').each(function() { if ($(this).attr('type') === 'checkbox') { if (!$(this).prop('checked')) { $(this).closest('div.form-row').addClass('woocommerce-invalid woocommerce-invalid-required-field'); } } else if ($(this).val() === '') { $(this).closest('div.form-row').addClass('woocommerce-invalid woocommerce-invalid-required-field'); } }); }); } }); } if (mutation.removedNodes.length) { $(mutation.removedNodes).each(function () { if ($(this).hasClass('woocommerce-error')) { console.log('.woocommerce-error removed'); } }); } } }; const observerCardNumber = new MutationObserver(callback); observerCardNumber.observe(document.body, { childList: true, subtree: true }); // Checkbox - Disclosure $('form.checkout .shipping_address').attr('id', 'znt-controlled-form_01'); var checkbox = $('#ship-to-different-address-checkbox'); var targetElementId = 'znt-controlled-form_01'; checkbox.attr('aria-controls', targetElementId); checkbox.attr('aria-expanded', checkbox.is(':checked')); checkbox.on('change', function() { var isChecked = checkbox.is(':checked'); checkbox.attr('aria-expanded', isChecked); }); } }, 2000); }); // Post a comment fixes $(document).ready(function() { setTimeout(function() { if ($('form.mg-comment-form').length) { $('#InputEmail').attr('autocomplete', 'email'); } }, 2000); }); // Sort by - Shop $(document).ready(function() { if ($('.woocommerce-ordering').length > 0) { var component = 'Choosing a selection will result in a full page refresh.'; $('.woocommerce-ordering .fi-select').append(component); $('.woocommerce-ordering .fi-select > span:first-child').attr('id', 'znt-sort-label_01'); $('.woocommerce-ordering .fi-select select') .removeAttr('aria-label') .attr('aria-describedby', 'znt-sort-selection_01') .attr('aria-labelledby', 'znt-sort-label_01') .attr('id', 'znt-sort_01'); } }); // Product quantity - Browser error fix $(document).ready(function() { if ($('.quantity').length) { $('.quantity .input-text.qty').on('input', function() { var quantityValue = parseInt($(this).val(), 10); var addButton = $(this).closest('form').find('.single_add_to_cart_button'); if (quantityValue === 0) { addButton.attr('disabled', 'disabled'); } else { addButton.removeAttr('disabled'); } }); } }); // Checkout fixes $(document).ready(function() { setTimeout(function() { if ($('form.checkout').length) { $('form.checkout').prepend('Fields with an asterisk (*) are required.'); $('label[for="billing_address_2"], label[for="shipping_address_2"]').removeAttr('class'); $('label[for="billing_address_2"], label[for="shipping_address_2"]').css('font-size', '14px'); var labelElement = $('Coupon Code'); $('#coupon_code').before(labelElement); } }, 500); }); // Removes the second repetitive ID from tthe Timeline page setTimeout(function() { if (document.querySelector('.timeline')) { const elementsWithIds = document.querySelectorAll('[id]'); const idOccurrences = new Map(); elementsWithIds.forEach((element) => { const id = element.id; if (idOccurrences.has(id)) { element.removeAttribute('id'); } else { idOccurrences.set(id, true); } }); } }, 2000); // Global Wave fixes by Crystal $(window).on("load", function() { setTimeout(function() { $("img:not([alt])").attr("alt", ""); }, 2000); // Set the timeout value (in milliseconds) according to your needs }); $(document).ready(function() { var label = $('Search'); var labelTwo = $('Hidden'); $('form.search-form input[type="search"]').eq(0).before(label).attr('id', 'search'); $('form.search-form input[type="search"]').eq(1).before(labelTwo).attr('id', 'znt-search_01'); $('input[name="b_59967798eed5b1e65091d8d81_b8c94d12e2"]').before(labelTwo).attr('id', 'hidden-input'); }); $(document).ready(function() { $('form#mc-embedded-subscribe-form input[placeholder]').removeAttr('placeholder'); }); $(document).ready(function() { var inputValElement = $('#inputVal'); if (inputValElement.length > 0) { inputValElement.attr('aria-label', 'hidden'); } }); $(document).ready(function() { setTimeout(function() { // To fix hover/focus Pin it links with no names $('div.pin-it').each(function() { var pinItLink = $(this).find('a'); if (pinItLink.length > 0) { pinItLink.attr('aria-label', 'Pin it on Pinterest'); } }); // To fix invalid aria attributes var element = $('#slider0-slide0'); if (element.length > 0) { element.removeAttr('aria-labelledby'); } // To fix slider buttons as links var links = $('ol.flex-control-nav.flex-control-paging a'); if (links.length > 0) { links.attr('role', 'button'); } // Fixing reCAPTCHA with no label var element = $('#g-recaptcha-response'); if (element.length > 0) { element.attr('aria-label', 'Google reCAPTCHA'); } }, 2000); }); // Replaces all paragraphs from the form with divs /* Variables */ :root { --znt-brand-color: #bf0d3e; --znt-border-color_dark: #625153; --znt-control-border: var(--znt-border-color_dark); --znt-text-color: #625153; --znt-link-color: var(--znt-text-color); --znt-btn-secondary-color: var(--znt-text-color); --znt-btn-secondary-border: var(--znt-btn-secondary-color); --znt-search-background: transparent; --znt-search-border: transparent; } /* Header */ .header { background-color: var(--znt-brand-color) !important; } /* Borders */ /* Initial states - for hover */ body[class*="products"] .product-buckets .bucket { border: 1px solid transparent; } /* Home - Product Cards */ body[class*="home"] .product-buckets .bucket, /* Shop - Product Cards */ body[class*="woocommerce"] .product-buckets .bucket, /* Our Products - Cards on hover */ body[class*="products"] .product-buckets .bucket:hover, .cta-buckets a > .bucket { border: 1px solid var(--znt-border-color_dark); } /* Form controls */ input:not([type="search"]), select, textarea, .fi-select, #coupon_code { border: 1px solid var(--znt-border-color_dark) ; } /* Text Color */ .h1, .h2, .h3, .h4, .h5, .h6, .search-results h1.h2 > span { color: var(--znt-text-color); } /* Paragraphs */ .timeline .year.year-headline .content, .product-buckets .bucket > a .content .size { color: var(--znt-text-color) !important; } .grid-flags { color: var(--znt-text-color); } /* History background image */ @media(min-width: 768px) { .backdrop.focuspoint + .container .content p { color: #fff; } } /* Footer Form */ .newletter-footer, .excerpt.post-full-width .list-categories { color: var(--znt-text-color); } /* Placeholders */ ::placeholder { opacity: .5 !important; } ::-webkit-input-placeholder { opacity: .5 !important; } ::-moz-placeholder { opacity: .5 !important; } :-ms-input-placeholder { opacity: .5 !important; } ::-ms-input-placeholder { opacity: .5 !important; } /* Separate/Loos Links */ #content p > a:not(.wc-backward), #content span > a, #content li > a, article > .container li > a, .subtitle > a:not(:hover), .press-contact-email a:not(:hover), .znt-flags-header a, .woocommerce-Address-title.title a, .woocommerce-message.woocommerce-message--info.woocommerce-Message a, .showcoupon, .reset_variations, .product-name > a { color: var(--znt-link-color); text-decoration: underline; } .well a.btn { color: #fff !important; } .well a.btn:hover { color: var(--znt-link-color) !important; } .well a.btn-o, .well a.btn{ text-decoration: none !important; } .list-press-releases a:not(:hover) { color: var(--znt-link-color); } /* Cart remove button */ .woocommerce a.remove { color: var(--znt-link-color) !important; border: 1px solid var(--znt-link-color); width: 28px !important; height: 28px !important; } .woocommerce a.remove:hover { color: #fff !important; background-color: var(--znt-link-color); } /* Input size fix */ .woocommerce-page table.cart td.actions .input-text#coupon_code { width: 240px; } /* Contact nav */ #content .nav-pages a:hover, #content .nav-pages a:focus, #content .nav-pages a.active { color: var(--znt-link-color); } /* Lists marks */ #content ol li::before, #content ul ol li::before { color: var(--znt-link-color); font-weight: 600; } /* Accordion and active elements */ .panel-group .panel .panel-heading .panel-title a:link:not(:hover), .panel-group .panel .panel-heading .panel-title a:active:not(:hover), .panel-group .panel .panel-heading .panel-title a:visited:not(:hover) { color: var(--znt-link-color) !important; } /* Buttons */ /* Secondary button - Outlined */ .btn-o.btn-secondary { color: var(--znt-btn-secondary-color); border-color: var(--znt-btn-secondary-border); } .btn-o.btn-secondary:hover, .btn-o.btn-secondary:focus, .btn-o.btn-secondary:focus-visible { color: #fff !important; background-color: var(--znt-btn-secondary-border); } .btn.btn-secondary { color: #fff !important; background-color: var(--znt-btn-secondary-border); } .btn.btn-secondary:hover { color: var(--znt-btn-secondary-border) !important; } /* Fake button */ a:not(:hover) span.btn.btn-link, a:not(:hover) .product_descriptor, .bucket a:not(:hover) .btn.btn-link { color: var(--znt-link-color); } /* Arrow button - Icon button */ .well .btn-arrow:not(:hover), .btn.btn-more:not(:hover) { color: var(--znt-btn-secondary-color) !important; } /* Titles/Headings */ .post-detail .post-sidebar h4, .decor, .page-template-products .product-buckets-wrapper h4, .filters .filter-section h4, .centered-content-wrapper .description h2, .timeline .year h2, .list-grid-items h1, .item .title, .featured-title, .page-template-product-category #content .well .title { color: var(--znt-btn-secondary-color); } /* Header */ /* Search */ header.header [type="search"] { background-color: var(--znt-search-background); border: 1px solid var(--znt-search-border); background-repeat: no-repeat; background-position: left 5px; background-size: 16px; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAYFBMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////98JRy6AAAAH3RSTlMAB7YIi/nppo71yCUg4sR1UjzV4a2CCtfLj5uReUfkc5O+MwAAASFJREFUeNrtlEWawzAMhRUzu8yt7n/L+eTBTK1Stv2Xz3mxhfAKb+YqGK1NUHN4AFkN/mCqhDvMMo5YzuAma7xCwQ3s10cL65xd4Cf23v+9itCITjdhzb4fiZB+lRSaxMQhW7wrOdJWLfJ+riqd7TZjUbY7atdg6P3pv5ooDtOtL5NDR/ocmIN4rUeuGIHyDx2oHqUbAlMjywShuTZQiKhZAxOcf/ZJuaMXLugtE7R6Nq2tcO5a35N+5lpD91sj880X5FiUO1JPXYNccu2dNw8P0K5JZbg5onr/PaJ7jZ+I4c4S2NIS2CJxx1GRQUhuESxxRC78HZ1VeTltBnHPQcu4GO1zUa2+jINhouMITzo8POngDYzjAE84jt4fNvAwbz4A6eQvzTQK+FEAAAAASUVORK5CYII=) !important; } /* Search on hover - line below */ header.header [type="search"]:focus { border-bottom: 1px solid #fff !important; } /* Visual Changes Overrides */ .znt-label { font-size: 14px; margin: 0 0 8px 0 !important; color: var(--znt-text-color); } .znt-legend { font-size: 1.8rem; font-weight: 600; line-height: 1.22; margin-bottom: 0.75em; border: none; } .znt-fieldset { margin-top: 20px; } /* Newsletter Footer */ #znt-form-info { font-size: 14px; font-weight: 600px; font-style: italic; } #mc-embedded-subscribe { color: var(--znt-text-color); /* border: 1px solid var(--znt-border-color_dark); */ margin-top: 20px; } #mc-embedded-subscribe:hover { color: #fff; background-color: var(--znt-border-color_dark); } .newletter-footer .fi-select > span { color: var(--znt-text-color); } @media(min-width: 768px) { .znt-fix_0001 { padding-top: 56px; } } /* Footer links */ .footer_navigation a { text-decoration: underline !important; } .secondary_navigation a:hover { opacity: 1 !important; text-decoration: underline !important; } /* Subheading h3 */ h3.subheading { color: #605252 !important; font-size: 1.8rem; } /* Subscription form contrast fix */ .newletter-footer input[type=text], .newletter-footer input[type=number], .newletter-footer input[type=email], .newletter-footer input[type=tel], .newletter-footer .form-control, .newletter-footer .fi-select { border-color: var(--znt-border-color_dark); } header.header .dropdown .dropdown-menu li a:hover { color: #fff; } .overlay-image-wrapper.set-right-top img, .overlay-image-wrapper.set-right-bottom img { object-position: center right !important; } @media(max-width: 1270px) { .overlay-image-wrapper.set-right-top img, .overlay-image-wrapper.set-right-bottom img, .overlay-image-wrapper.set-left img { width: 160px !important; } } @media(max-width: 800px) { .overlay-image-wrapper.set-right-top img, .overlay-image-wrapper.set-right-bottom img, .overlay-image-wrapper.set-left img { display: none !important; } } article.excerpt.post-block:focus-within .post-image a:after { bottom: 0; top: 0; } article.excerpt.post-block:focus-within .post-content .cta { opacity: 1; height: 70px; padding-top: 20px; } /* Soliloquy by Zenyth */ .znt-hidden { /* display: none !important; */ } .znt-slider-container { width: 100%; height: calc(100vh - 158px) !important; /* display: none !important; */ } .znt-slider-container .soliloquy-viewport { height: calc(100vh - 158px) !important; } .znt-slider-container .znt-slide img { max-width: initial; max-height: initial; } .znt-slider-container .znt-slide { width: 100%; text-align: center; background-color: #625153; } .znt-slider-container .znt-slide .znt-slide-background-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; } .znt-slide-featured-image { width: 310px !important; max-width: 100% !important; } /* Content */ .znt-slider-container .znt-slide-container { padding: 16px 0px 16px 210px; position: relative; z-index: 10; } .znt-slide-container > * + * { margin-top: 32px !important; } .znt-slider-container .znt-slide .text { font-family: inherit; font-size: 15px; line-height: 21px; } /* Dark background */ .znt-slider-container .znt-slide .text.white { color: #fff; } .znt-slider-container .znt-slide .button.white { background-color: #fff; color: #000; } .znt-slider-container .znt-slide .button.white:after { border-left-color: #000; } /* Focus Visible */ .znt-slider-container a:not(.button):focus-visible { outline-color: #fff !important; outline-offset: -4px !important; } .znt-slider-container .button:focus-visible { outline: 1px solid #000 !important; outline-offset: -4px !important; } .soliloquy-pager-item a { border-radius: 100%; } /* Bullets */ .soliloquy-pager-item { background-color: rgba(191, 13, 62, .75) !important; padding: 5px !important; margin: 0 !important; box-shadow: 3px 3px 8px rgba(0,0,0,.5) !important; border: 1px solid #fff !important; border-radius: 5px !important; } /* Mobile fixes */ @media(max-width: 970px) { /* Overrides Brands */ .znt-slider-container, .znt-slider-container .znt-slide, .soliloquy-viewport, .soliloquy-item { /* height: initial !important; min-height: 520px !important; */ } .znt-slider-container .znt-slide-container { width: 100%; } } /* Overrides Brands */ .page-id-5 .znt-slider-container { margin-top: 110px; } .znt-slider-container .znt-slide-container { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 560px; } .soliloquy-container .soliloquy-next, .soliloquy-container .soliloquy-prev, .soliloquy-container .soliloquy-start, .soliloquy-container .soliloquy-stop { background: none !important; border-radius: 5px !important; background-color: rgb(191, 13, 62) !important; background-size: 8px !important; background-repeat: no-repeat !important; background-position: center !important; box-shadow: 3px 3px 8px rgba(0,0,0,.5) !important; border: 1px solid #fff !important; } .soliloquy-container a.soliloquy-next:focus-visible, .soliloquy-container a.soliloquy-prev:focus-visible, .soliloquy-container a.soliloquy-start:focus-visible, .soliloquy-container a.soliloquy-stop:focus-visible { outline: 2px solid #fff !important; outline-offset: -6px !important; } a:not(.button).soliloquy-pager-link:focus-visible { outline: 1px solid #fff !important; outline-offset: 3px !important; } .soliloquy-container .soliloquy-stop { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAATBAMAAABrSZD8AAAAD1BMVEUAAAD///////////////+PQt5oAAAABHRSTlMAQMAwLioMuAAAABtJREFUCNdjcHFxZGAQcXEZvAwlJWUGBiMlJQDc0hn4FRsPkAAAAABJRU5ErkJggg==) !important; } .soliloquy-container .soliloquy-start { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUBAMAAAB2TKBEAAAAJFBMVEUAAAD///////////////////////////////////////////+0CY3pAAAAC3RSTlMA9ODLr5FzUDQfC/4JORAAAABDSURBVAjXY/BkgIKNCVDG7s0NUMburQugjN3qMMZuTxgDqAHCAGsA0WANIAqsAcFASCEUI7R7wqxAtRSoENVhcKcCAGggPuVoui4oAAAAAElFTkSuQmCC) !important; } .soliloquy-container .soliloquy-prev { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAMAAABf788oAAAAHlBMVEUAAAD///////////////////////////////////8kfJuVAAAACXRSTlMA8DAQ0M/gYFAnFUPYAAAAQElEQVR42r3RtQFAMQhF0eCw/8Df3TV051K+ND1UsJkhAhYOXhjwX/PStGuPudPi3waZBnxeFJcFMhZZD7WcsgRcIAOe8/5f+wAAAABJRU5ErkJggg==) !important; } .soliloquy-container .soliloquy-next { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAMAAABf788oAAAAGFBMVEUAAAD///////////////////////////8jfp1fAAAAB3RSTlMA8DDg0BBgvVFMxgAAADlJREFUeNrFUScCACAQugn//7HVrUlJzIRA3aSGkto4zs4x/epE7+St4xujn/TavNP6Vo83aKeHKwu7qQLuSK/C9wAAAABJRU5ErkJggg==) !important; } @media(min-width: 970px) { .znt-slide-content { padding 4px; } } /* Mobile fixes */ .soliloquy-container .soliloquy-controls-auto, .soliloquy-container .soliloquy-pager { display: block !important; } @media(max-width: 970px) { .znt-slider-container, .znt-slider-container .znt-slide, .soliloquy-viewport, .soliloquy-item { /* height: initial !important; min-height: 100vh !important; */ } /* Overrides Brands */ .znt-slider-container .znt-slide-container { width: 100%; } } .znt-slide-content .heading { font-size: 65px; font-weight: 400; font-family: "Sentinel A","Sentinel B",Georgia,Times,"Times New Roman",serif!important; margin-bottom: 28px; } .znt-slide-content .heading.white { color: #fff; } .znt-slide-content .heading.brand { color: rgb(191, 13, 62); } .znt-slide-content .text { font-size: 19px !important; font-weight: 400; font-family: "bebas-neue",sans-serif!important; color: rgb(191, 13, 62); letter-spacing: 3px; color: rgb(191, 13, 62) !important; } .znt-slide-cta .button { position: relative !important; background-color: rgb(191, 13, 62) !important; padding: 23px 78px; height: 64px; box-shadow: none; font-family: "bebas-neue",sans-serif!important; text-transform: uppercase; color: #fff !important; letter-spacing: 3px; display: inline-block; } .znt-slide-cta .button:focus { text-decoration: none; } /* .overlay-image-wrapper { display: none; } */ .soliloquy-item { height: 100% !important; } @media(max-width: 800px) { .znt-slide-container { padding-left: 56px !important; padding-right: 56px !important; } .znt-slide-content .heading { font-size: 40px; } } @media(max-width: 600px) { .znt-slide-content .heading { font-size: 32px; line-height: 1.2; margin-bottom: 28px; } .znt-slide-cta .button { padding: 18px 16px; height: initial; } } /* Generic Container */ .znt-shortcode-container .znt-slide { width: 100%; text-align: center; background-color: #625153; } .znt-shortcode-container, .znt-shortcode-container img { height: 350px; } .znt-shortcode-container img { width: 100%; object-fit: contain; object-position: center; } .znt-shortcode-container.cover img { object-fit: cover; } .znt-shortcode-container .soliloquy-viewport { height: 350px; !important; } @media(max-width: 768px) { .znt-slider-container, .znt-slider-container .soliloquy-viewport { width: 100%; height: 500px !important; } } body.home .soliloquy-prev, body.home .soliloquy-next { display: none !important; } body.home .znt-slide-container { padding-left: 16px !important; padding-right: 16px !important; } html:not(.show-nav) .nav-offscreen { display: none !important; } @media (min-width: 768px) { .page-id-89601 .product-buckets .col-sm-4 { width: 25%; } } /* Pagination update to show ARIA */ .pager [aria-current="page"] { border-radius: 50%; border-color: #bf0d3e; color: #bf0d3e; } /* Blog page fixes - reflects on recipes */ .excerpt .post-image:only-child, .excerpt .post-content:only-child { height: initial !important; min-height: 530px; } /* Product category page */ .znt-flex-container-lg4 { display: flex; flex-wrap: wrap; margin: -12px !important; } .znt-flex-container-lg4 > * { padding: 12px !important; } .znt-flex-container-lg4 > * > .bucket { height: 100% !important; } .znt-flex-3cols { display: flex; margin: -12px; } .znt-flex-col { flex: 1; padding: 12px; } .znt-flex-col .bucket { max-height: 430px !important; } /* Typography */ @media(max-width: 720px) { h1 { font-size: 28px; line-height: 1.4; } } h1, h2, h3, h4 { font-weight: bold; } /* Admin bar fiz */ .admin-bar #page.alt-header .header { top: 32px; } /* Recipe Post Overrides */ .post-detail .post-sidebar h2 { font-family: "bebas-neue", sans-serif; color: #ac8539; margin: 0 0 40px; font-size: 1.6rem; font-weight: 600; letter-spacing: 2px; } .post-detail .post-sidebar li { margin: 0; } /* Post Details/Content Overrides */ .post-detail table { width: 500px; max-width: 100%; margin-bottom: 50px; } .post-detail table td, .post-detail table th { border: 1px solid #000; padding: 2px 4px; } /* .post-detail ul { margin-top: 32px; } */ .post-detail ul:not(.list-unstyled) li { margin: 0; display: inline; padding-left: 32px; white-space: nowrap; } .post-detail h2, .post-detail h3, .post-detail h4, .post-detail h5 { margin: 16px 0 8px 0 !important; } /* Press Overrides */ [class*="mg_press"] .post-detail h2 { font-size: 22px; } .list-press-releases > li > a { text-decoration: none !important; } .page-template-press-room .list-press-releases li { background-color: #fff; border-top: 1px solid #dfdbd6; padding: 30px 40px; } @media screen and (min-width: 768px) .page-template-press-room .list-press-releases li { padding: 36px 70px 50px; } /* Home parallax */ .history-overview .illustration .image { background-repeat: no-repeat !important; } .image-buckets .backdrop.focuspoint img { object-fit: cover; object-position: center; } /* Featured title - Facilities */ .featured-title { margin: 0 0 0.625em; font-weight: 400; font-size: 4.8rem; letter-spacing: -1px; line-height: 1; } /* Disclosurebutton */ .button-toggle:not([aria-expanded="true"]) .see-less, .button-toggle[aria-expanded="true"] .see-more, .disclosure-container:not(.is-visible) { display: none; } /* Privacy Policy Page */ h2.subheading { color: inherit; font-size: 2.1rem; font-weight: 600; margin: 0 0 1em; } /* Visit Us Page Link */ .visit-us-link { text-decoration: underline !important; } /* Sustainability Page Button Focus Outline */ div.description > button:focus { outline: 1px dotted #000 !important; outline-offset: 2px; } /* Contact Us Page */ .mt-40 { margin-top: 40px; } .gfield { margin-top: 15px; } .gform_required_legend { display: none; } .gform_button { margin-top: 5em; } .znt_error-message { margin-top: .5em; } @media screen and (max-width: 767px) { .gform_button { margin-top: 1em; } .gform_wrapper .gfield_label, .gform_wrapper .select-menu label { display: block !important; font-size: 1.4rem; } legend.gfield_label { font-size: 1.8rem !important; } } /* Home page, bucket cards focus */ .image-buckets .bucket:focus-within .backdrop::after { bottom: 0; top: 0; } .image-buckets .bucket:focus-within > a .content .cta { opacity: 1; height: 70px; padding-top: 20px; } /* Submenu button styling by Crystal */ .menu-item { position: relative; } .submenu-toggle { position: absolute !important; top: 0; right: -24px; /* Adjust the value as needed */ width: 20px; /* Adjust the width as needed */ height: 20px; /* Adjust the height as needed */ margin-right: 15px; } .submenu-toggle:focus, .submenu-toggle:focus-visible { outline: dotted 1px #000; } .submenu-toggle::after { content: ""; display: inline-block; width: 0; height: 0; margin-left: 5px; /* Adjust the margin as needed */ vertical-align: middle; border-top: 5px solid; border-right: 5px solid transparent; border-left: 5px solid transparent; } .submenu-toggle::before { content: none !important; } .search-form { margin-left: 1em; } @media screen and (max-width: 767px) { .submenu-toggle { display: none; } } /* Skip Link by Crystal */ .skip-link { position: absolute; top: -9999px; left: -9999px; z-index: 99999; background-color: white; color: #BF0D3E; border: 1px solid #BF0D3E; padding: 5px; transition: transform 0.3s ease; } .skip-link:focus { top: 0; left: 0; transform: translateY(0); } /* Product cards */ .znt-featured-card { min-height: 710px; } .znt-featured-card > .bucket > * { z-index: 5; } .znt-featured-card-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; object-fit: cover; object-position: center; } .znt-product-card-image { height: 100% !important; object-fit: cover; object-position: center; } @media(min-width: 1100px) { .znt-flex-buckets { display: flex; } } /* Recipes Mobile Fix */ @media(max-width: 768px) { .post-image, .post-content { min-height: initial !important; } .excerpt { border: 1px solid #625153; margin-bottom: 20px; overflow: hidden; margin-left: 16px; max-width: calc(100% - 32px); } .excerpt .post-content { padding-top: 20px; } .excerpt .backdrop { overflow: hidden; } } /* Pagination dots fix */ .dots [aria-current="page"] { border: none !important; } .h1.is-white, .h2.is-white, .h3.is-white, .h4.is-white, .h5.is-white, .h6.is-white { color: #fff; } /* Checkout form fix */ .fi-checkbox { margin-top: 6px !important; } form.checkout [class*="invalid"] input + .znt_error-message { display: block !important; } .znt_payment-error-message { display: none; } input[class*="invalid"] + .znt_payment-error-message { display: block; } /* Checkout error fixes */ .woocommerce-error > a { display: block; color: #000; } .select2-search__field { display: none !important; } .select2-container .select2-selection--single { height: 64px !important; padding-top: 18px; } body > .select2-container--open { transform: translateY(-28px); } /* Why Martinelli's */ @media(max-width: 769px) { section.hero .frontdrop .container .btn-o.btn-white { border-color: #625153; color: #625153; } section.hero .frontdrop .container .btn-o.btn-white:hover { color: #fff; } } /* History new component */ .znt-dropdown-modifier { background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; padding: 6px 0; z-index: 9999; } .znt-dropdown-modifier a { padding: 0 18px; min-width: 180px; display: block; } .znt-dropdown-modifier h2 { margin-bottom: 16px; padding: 0 18px; } .blockUI.blockOverlay { display: none !important; } /* Subscription form error fix */ .mce_inline_error + .znt_error-message { display: block !important; } /* Quantity fixes - Cart */ .product-quantity .quantity > label { position: relative !important; font-size: 12px !important; } .woocommerce-cart table.cart td.actions .coupon .input-text { float: initial !important; } td > .coupon { float: initial; display: flex; align-items: center; } td > .coupon > * { margin-right: 12px; } td > .coupon [name="apply_coupon"] { margin-left: 20px !important; } /* Main nav focus fix */ .menu-item a:focus { outline-color: transparent !important; } .menu-item a:focus-visible, .header a.logo, .submenu-toggle { outline-color: #fff !important; outline-offset: 3px !important; } /* Background fix - dropdown */ .menu-item .dropdown-menu { background-color: #bf0d3e !important; } /* Cards Label */ .bucket a span.h4 { color: #fff; } /* Overflow issues */] .hero.hero-history, .page-template-centered-content_ACF #content { overflow: hidden; } .znt-mobile-search { margin-top: 32px; margin-left: 0; } .search-form.znt-mobile-search input[type=search] { border: 1px solid #000 !important; width: 100% !important; height: 44px !important; padding: 4px 28px !important; background-image: none !important; color: #605252; } .znt-search-label { color: #605252; } /* Wave color contrast error fixes */ label[for="search"]{ color: white; background-color: black; } .sr-only{ color: white; background-color: black; } option { color: #625153; } /* Wave fix */ @media(min-width: 768px) { .excerpt.post-block .post-content { background-color: #000; width: 0; } .excerpt.post-block .post-content .meta-info, .excerpt.post-block .post-content .title { width: 240px; } } /* Blog post categories fixes */ .post-detail h2.categories-heading { margin-bottom: 1em !important; } .categories-container { position: absolute; top: 50px; right: 10px; } @media(max-width: 992px) { .categories-container { position: relative; top: 0px; right: 0px; } } .woocommerce form.checkout_coupon.f-block { display: block !important; } /* Mask global */ .backdrop.focuspoint:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; opacity: .25; } /* Static Hero */ .znt-static-hero { position: relative; width: 100%; height: calc(100vh - 158px); } .znt-static-hero-image, .znt-static-hero-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; } .znt-static-hero-container { z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 32px; } .znt-static-hero-container .heading { font-size: 65px; font-weight: 400; font-family: "Sentinel A","Sentinel B",Georgia,Times,"Times New Roman",serif; margin-bottom: 28px; color: #bf0d3e; } .znt-static-hero-container .text { font-size: 19px; font-weight: 400; font-family: "bebas-neue",sans-serif; color: #bf0d3e; letter-spacing: 3px; } @media(max-width: 1024px) { .znt-static-hero { height: initial !important; } .znt-static-hero-container { padding: 16px; position: relative !important; } .znt-static-hero-container .heading { font-size: 32px; margin-bottom: 6px; } .znt-static-hero-image { position: relative; } } fieldset.filter-section legend.h4 { border: none; transform: translateY(30px); } @media(max-width: 768px) { .znt-desktop { display: none} } @media(min-width: 768px) { .znt-mobile { display: none} } .znt-desktop /* Zenyth Accessibility fixes */ /* Focus override */ a:focus:not(footer :is(a)), input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: 1px solid #BF0D3E !important; outline-offset: 3px; } a:focus { text-decoration: none !important; } footer :is(a):focus { outline: 1px solid white; outline-offset: 3px; } /* Focus visible, applied on specific components */ /* back button */ a.btn.btn-arrow.btn-arrow:focus-visible, /* Checkout checkbox Shipping */ .woocommerce-shipping-fields label.woocommerce-form__label-for-checkbox:focus-within, /* Contact location radio group */ .gfield_radio .fi-radio:focus-within, /* Menu open and close buttons */ button.toggle-nav:focus-visible, button.close-nav:focus-visible, /* Comments section checkbox */ .checkbox-label:focus-within, button.dropdown-toggle:focus-visible, /* Slider CTA */ .znt-slide-cta .button:focus-visible, /* Global outline buttons */ .btn-o.btn-secondary:focus-visible, a.btn:focus-visible, /* Hidden button on press room button */ .pin-it:focus-within a { outline: 2px solid #bf0d3e !important; outline-offset: 4px !important; outline-width: 2px !important; } .pin-it:focus-within a { opacity: 1 !important; } /* Inner focus indicator */ .backdrop a:focus-visible, [aria-controls="commentsPanel"]:focus-visible, /* FAQ */ a.collapsed:focus-visible { outline: 2px solid #bf0d3e !important; outline-offset: -8px !important; outline-width: 2px !important; } /* Global focus - by component */ select:focus-visible, input:focus-visible, .fi-select:focus-within { outline: 2px solid #bf0d3e !important; outline-offset: 4px !important; } /* Size label on Product details */ .variations_form [for="pa_size"] { color: #605252; } /* Cart Layt table fixes */ #shipping_method li:before { display: none; } /* Form error messages */ .znt_error-message { display: none; font-size: 13px; } [aria-invalid="true"] + .znt_error-message, .gfield.gfield_error .znt_error-message { display: block; } .gform_submission_error { font-size: 20px; margin: 0; } /* Sitemap page - fixes */ .wsp-pages-list a { color: #605252; text-decoration: underline; } .wsp-pages-title { margin-bottom: 32px; font-size: 22px; } .wsp-pages-list { margin-bottom: 50px; } @media(min-width: 780px) { .wsp-pages-list { column-count: 3; column-gap: 20px; } } #mc-embedded-subscribe{ margin-bottom: 15px; } #mc-embedded-subscribe:focus { border-color: #625153; } /* General, helpers styles */ .strong { font-weight: bold; } /* Filter Focus */ .filter-section .form-group.radio-group .control-label:focus-within, .clear-filter:focus-visible { outline: 2px solid #BF0D3E; outline-offset: 4px; } body[class*="products"] .product-buckets .bucket { padding-top: 0; } .product-buckets-wrapper .product-block a { display: block; padding-top: 40px; } .product-buckets-wrapper .product-block a:focus-visible { outline: 2px solid #BF0D3E; outline-offset: -4px; } .filters .filter-heading a { outline-offset: 4px !important; } .filters .filter-heading h3 { margin-right: 36px; } .nutrition-facts-img{ max-width:400px; margin-left:auto; margin-right:auto; } .nutrition header .description { max-width: 600px; margin-left: auto; margin-right: auto; } .ingredients { max-width: 650px; margin-left: auto; margin-right: auto; } /*--removing subscribe footer--*/ .page-id-7271 .newletter-footer{ display:none!important; } .error404 .newletter-footer { display: none; } /* Hide Google Tag Manager tracking image */ img[src*="w55c"] { display: none; } var _userway_config = { position: '3', color: '#BF0D3E', account: '4MCAGEih5n' }; .recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;} /* */ function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); }; /*--footer logo updated from 150th--*/ @media (max-width:450px){ .footer-logo-original img{ margin:0px 0px 20px 0px; } } /*--fixing recipe dropdown menu when the names became longer--*/ @media screen and (min-width: 992px), all{ .post-detail .post-main .dropdown{ right: -50px; } } .recipe .dropdown .dropdown-toggle { padding: 0 96px 0 20px!important; } .recipe .dropdown .dropdown-menu li { padding: 0 15px 0 20px!important; } @media screen and (min-width: 980px) { #field_2_41 { width: 50%; float: right; } #field_2_42 { width: 50%; float: right; } } .single-mg_product .well .list-inline.list-unstyled.list-buttons li > .btn-o{display:none} [ {"@context":"http://schema.org/","@type":"Organization","alternateName":"Martinelli\u2019s","mainEntityOfPage":"http://martinellis.com","name":"S. Martinelli & Company","url":"http://martinellis.com","logo":"https://www.martinellis.com/wp-content/themes/martinellis/assets/images/logo-schema-big.png","sameAs":["https://www.facebook.com/MartinellisCo/","https://twitter.com/MartinellisCo","https://www.instagram.com/martinellisco/"],"address":{"@type":"PostalAddress","addressCountry":"USA","postOfficeBoxNumber":"1868","postalCode":"95077-1868"}} ] Toggle Navigation Our Heritage Our Products Where to Buy Visit Us Recipes Close Our Heritage Our Products Where to Buy Visit Us Recipes Search Celebrate Spring with Bubbles
  • [H3] Your FavoriteSparkling is NowOn The Move
  • [H3] Make Every Moment Golden
  • [H3] Keep Life Sparkling
  • [H3] Refreshing and Certified Organic
  • [H3] DIY Kid’s Picnic Party Decor
  • [H3] Martinelli’s Iconic Bottles
  • [H3] DIY Martinelli’s Apple Juice Easter Bunny

Картинки

Мы нашли 26 картинок на этом веб-сайте.

18 alt атрибута(-ов) не найдено. Добавив альтернативный текст, поисковые роботы будут лучше понимать содержание картинки.

Соотношение Контент/HTML

Соотношение : 10%

Соотношение текста в коде HTML у этой страницы меньше чем 15 процентов, это означает, что Вашем веб-сайту требуется больше контента.

Flash

Замечательно, мы не нашли Flash контента на странице.

Iframe

Очень плохо, на Вашей странице были найдены Iframe'ы. Это говорит о том, что содержимое их не будет проиндексировано.

ЧПУ ссылки

Отлично, все Ваши ссылки являются ЧПУ!

Нижнее подчеркивание в ссылках

Прекрасно! Мы не нашли "нижнее подчеркивание" в Ваших ссылках.

Внутренние ссылки

Мы нашли 19 ссылок(-и), включая 0 ссылок ссылок(-и) на файл(-ы).

Анкор Тип Вес ссылки
Skip to main content Внутренняя Передает вес
Our Heritage Внутренняя Передает вес
Our Products Внутренняя Передает вес
Where to Buy Внутренняя Передает вес
Visit Us Внутренняя Передает вес
Recipes Внутренняя Передает вес
SHOP NOW Внешняя Передает вес
See All Posts Внутренняя Передает вес
1868 HARD CIDER Внешняя Передает вес
Sitemap Внутренняя Передает вес
Press Room Внутренняя Передает вес
Careers Внутренняя Передает вес
FAQs Внутренняя Передает вес
Contact Us Внутренняя Передает вес
Terms & Conditions Внутренняя Передает вес
Accessibility Внутренняя Передает вес
Privacy Policy Внутренняя Передает вес
California Privacy Внутренняя Передает вес
- Внутренняя Передает вес

Ключевые слова

Облако ключевых слов

watsonville sparkling juices organic view privacy tasting diy room company

Содержание ключевых слов

Ключевое слово Контент Заголовок страницы Ключевые слова Описание страницы Заголовки
sparkling 4
view 4
company 3
privacy 3
room 2

Юзабилити

Домен

Домен : martinellis.com

Длина : 15

Favicon

Отлично, Ваш сайт имеет favicon.

Пригодность для печати

Плохо. Мы не нашли CSS файл, отвечающий за печать веб-сайта.

Язык

Хорошо, Ваш установленный язык веб-сайта: en.

Dublin Core

Ваш веб-сайт не использует преимущества Dublin Core.

Документ

Doctype

HTML 5

Кодировка

Замечательно. Кодировка веб-сайта: UTF-8.

W3C Validity

Ошибок : 0

Предупреждений : 0

Приватность эл. почты

Внимание! Как минимум 1 адрес эл. почты был найден в контенте. Воспользуйтесь бесплатной защитой от спама, чтобы скрыть адрес от спамеров.

Устаревший HTML

Отлично. Мы не нашли устаревших тэгов в Вашем HTML.

Скорость загрузки

Отлично, Ваш веб-сайт не содержит вложенных таблиц.
Слишком плохо. Ваш веб-сайт использует встроенные CSS правила в HTML тэгах.
Плохо. Ваш веб-сайт имеет слишком много CSS файлов (больше чем 4).
Плохо. Ваш веб-сайт имеет слишком много JavaScript файлов (больше чем 6).
Замечательно, ваш сайт использует возможность gzip сжатия.

Мобильный телефон

Оптимизация под моб. телефон

Apple иконки
Meta Viewport Тэг
Flash контент

Оптимизация

XML карта сайта

Отлично, ваш сайт имеет XML карту сайта.

https://www.martinellis.com/sitemap_index.xml

Robots.txt

https://martinellis.com/robots.txt

Отлично, ваш веб-сайт содержит файл robots.txt.

Аналитика

Отсутствует

Мы не нашли ни одной аналитической программы на вашем сайте.

Веб аналитика позволяет следить за активностью пользователей на вашем веб-сайте. Вы должны установить как минимум один инструмент, но также хорошо иметь несколько, чтобы сравнивать показания между собой.

PageSpeed Insights


Устройство
Категории

Free SEO Testing Tool

Free SEO Testing Tool - это бесплатный СЕО инструмент, который поможет вам проанализировать Ваш веб-сайт.