Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged Add

Rss Feed Group items tagged

the MageComp

Magento 2: Add extra "Proceed to Checkout" Button on top of grid on shopping cart page - 0 views

  •  
    In Magento 2, "Proceed to Checkout" Button is displayed after order summary but you can Add extra "Proceed to Checkout" Button on top of grid on shopping cart page for a quick checkout process.
builderfly

Personalize your store with Builderfly's next webinar - 0 views

  •  
    On your Builderfly store, you can add unlimited products and create variations with the attributes of your choice. You can select the best look of your product and update image attributes as well. Technical experts will cover the topic "How to add your first product in the Builderfly store?" The live session will give you a better understanding of the utility of all the functionalities that you can leverage to manage your product catalogue.
the MageComp

How to Add Date & Time Picker in Magento 2 System Configuration With Custom Format - 0 views

  •  
    Magento 2 provides default functionality to display date and time with default format. But in this article, I will guide you How to Add Date & Time Picker in Magento 2 System Configuration with Custom Format.
the MageComp

How to Add Social Widget without extension: Facebook Social Plugins in Magento 2 - 0 views

  •  
    There are many Social Widget Extensions available on the Magento marketplace. In this article, I will help you How to Add Social Widget without extension: Facebook Social Plugins in Magento 2.
the MageComp

How to Add Terms And Conditions Checkbox in Magento 2 - 0 views

  •  
    The above-mentioned need can be fulfilled in Magento 2. How to Add Terms and Conditions Checkbox in Magento 2 states steps to be implemented from the back-end.
the MageComp

How to Add a Packaging Option in Magento 2 - 0 views

  •  
    The admin can set the packaging options from the store backend. Read our latest blog on How to Add a Packaging Option in Magento 2 which describes the steps to accomplish it.
builderfly

Personalize your store with Builderfly's next webinar - Ecommerce Website Builder - 0 views

  •  
    Technical experts will cover the topic "How to add your first product in the Builderfly store?" The live session will give you a better understanding of the utility of all the functionalities that you can leverage to manage your product catalogue. Creating product pages and updating bulk lists. On your Builderfly store, you can add unlimited products and create variations with the attributes of your choice. You can select the best look of your product and update image attributes as well.
the MageComp

How to Add Tracking Number to the Current Order Shipment in Magento 2 - 0 views

  •  
    Nowadays, all the E-commerce stores provide their customers to track their orders to upgrading the customer experience of your Magento 2 store. In this Magento Tutorial blog, I will help you How to Add Tracking Number to the Current Order Shipment in Magento 2.
web245

Website Designer Near Me And Business Consultant - WEB HOUSE - 0 views

  •  
    how i build a professional website Choose a hosting provider: You'll need to choose a web hosting provider that supports WordPress. Some popular options include Bluehost, SiteGround, and HostGator. Install WordPress: You can install WordPress through your hosting provider's control panel or using a tool like Softaculous. Install an ecommerce plugin: You'll need an ecommerce plugin to add shopping cart functionality to your website. WooCommerce is the most popular option and can be installed directly from the WordPress dashboard. Choose a theme: You'll need to choose a theme that's compatible with WooCommerce and fits the style of your ecommerce store. You can browse and install themes directly from the WordPress dashboard. Configure your settings: Once you've installed WooCommerce and a theme, you'll need to configure your ecommerce settings, including shipping options, payment gateways, tax rates, and more. Add your products: Use the product management tools in WooCommerce to add your products to your store. Be sure to include product descriptions, prices, and images. Customize your site: You can use WordPress plugins and widgets to add additional functionality to your ecommerce site, such as social media sharing buttons, email newsletter signup forms, and more. Test and launch: Before you launch your site, be sure to test it thoroughly to make sure everything is working correctly. You can use tools like Google Analytics to track your site's performance and make improvements over time.
Richard Boss

Use WordPress As An Efficient CMS - 1 views

  •  
    Wordpress is the best CMS for building website search engine and user friendly. In this article, we will see why you choose Wordpress for building your website? As well as, you find advantages, add-ons and plugins.
  •  
    Wordpress is the best CMS for building website search engine and user friendly. In this article, we will see why you choose Wordpress for building your website? As well as, you find advantages, add-ons and plugins.
jdr santos

Modernizr - 0 views

  •  
    Modernizr adds classes to the element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it.
  •  
    Modernizr adds classes to the element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it.
Jochen Burkhard

CouchDB basics for PHP developers - 0 views

  • Summary:  Author Thomas Myer shows experienced PHP developers how to add CouchDB to their technical toolboxes.
  •  
    Summary:  Author Thomas Myer shows experienced PHP developers how to add CouchDB to their technical toolboxes.
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
Kristina Roy

Why You Need To Choose a Professional Ecommerce Developer? - 0 views

  •  
    Ecommerce development involves the work of building a highly specialized website design envisioned for a virtuous business communication and financial transactions through an internet. It is a perfect example to showcase how the communication and information technologies add to an Economic development.
  •  
    Ecommerce development involves the work of building a highly specialized website design envisioned for a virtuous business communication and financial transactions through an internet. It is a perfect example to showcase how the communication and information technologies add to an Economic development.
Siraj Mahmood

How to Add MailChimp Subscription Box on Your Website - 0 views

  •  
    MailChimp is a trusted and verified email service company, which serving since 2001. MailChimp is considered as a best email marketing service around internet, due to his finest services and plans. No
baates

add url - 0 views

shared by baates on 06 Sep 18 - No Cached
  •  
    you can add your article free
the MageComp

How to Add ICICI Payment Gateway in Magento 2 - 0 views

  •  
    All Ecommerce Store Owners build customer's trust by providing comfort and security for online transactions. In this article, we will learn How to Add ICICI Payment Gateway in Magento 2. So, your customers pay without any risk.
the MageComp

Top 6 E-Commerce Trends 2021 That Add Values to Magento 2 Store - 0 views

  •  
    The E-commerce world is progressing at a fleeting rate, As we have already entered 2021, here we have compiled the Top 6 E-Commerce Trends 2021 That Add Values to Magento 2 Store.
mikhail-miguel

Supertranslate - Add English subtitles to any language video in one click (supertransla... - 0 views

  •  
    Supertranslate: Add English subtitles to any language video in one click (supertranslate.ai).
wecodefuture2015

What are the limitations of FOMO Plugin? - 3 views

Introduction The FOMO plugin is the perfect notification tool for individuals who want to stay updated on their favorite blogs and websites, but don't want to be inundated with notifications every...

FOMO Plugin Marketing Wordpress

started by wecodefuture2015 on 28 Oct 22 no follow-up yet
« First ‹ Previous 41 - 60 of 303 Next › Last »
Showing 20 items per page