How to Design Bullets & Lists?

How to Design Bullets & Lists?

WordPress Block Editor by default provides a simple design for bullets and lists. Below is the screenshot of how you can add a simple code for lists with WordPress Block Editor. We used the 「HTML」 blocks for adding the codes, and the 「Paragraph」 blocks for adding the regular text:

This is a screenshot of how this would look on the frontend:

If you would like to add some style to bullets and lists, you can use the following CSS. Below are the steps that show how to use CSS.

Step 1 – Add the following CSS classes to ol (ordered lists) and ul (unordered list) with the following HTML codes:

Code for ol (ordered lists) – 『ast-content-ol-list』

  1. One
  2. Two
  3. Three
  4. Four
  5. Five

Code for ul (ordered lists) – 『ast-content-ul-list』

  • Red
  • Blue
  • White
  • Yellow
  • Green

You can modify the number of list items by removing lines or adding new ones (

  • ITEM_NAME
  • ).

    Step 2 – Now it』s time to style your lists. Navigate to the Customizer and copy the following custom CSS to your website』s 「Additional CSS」.

    /* Order list style */ .entry-content ol.ast-content-ol-list {
    counter-reset: my-ol-counter;
    margin-left:1.4em;
    }
    .entry-content ol.ast-content-ol-list li {
    position: relative;
    padding-left: 30px;
    list-style: none;
    }
    .entry-content ol.ast-content-ol-list li:before {
    position: absolute;
    top:50%;
    left: 0;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    color: #fff;
    text-align:center;
    background-color: #0274be;
    content: counter(my-ol-counter,decimal);
    counter-increment: my-ol-counter;
    font-size: 11px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    }

    /* Unordered list style */
    .entry-content ul.ast-content-ul-list {
    margin-left:1.4em;
    }
    .entry-content ul.ast-content-ul-list li {
    position: relative;
    padding-left: 30px;
    list-style: none;
    }
    .entry-content ul.ast-content-ul-list li:after{
    position: absolute;
    top: -webkit-calc( 50% - -1px);
    top: calc( 50% - -1px);
    left: 0; width: 20px;
    height: 20px;
    margin-top: -10px;
    padding-top: 2px;
    color: #fff;
    text-align:center;
    background-color: #0274be;
    content: "e900";
    font-size: 10px;
    font-family: 'Astra';
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    }

    If you』re not sure how to do this, please check this article on adding s custom CSS.

    The result of adding the above CSS is the following look of your bullets and lists:

    You can modify the color, font, spacing, and size of the elements by modifying the appropriate lines of the CSS code.

    How to Highlight a Certain Menu Item?

    How to Highlight a Certain Menu Item?

    Sometimes there is a need to highlight a particular menu item. You can highlight a menu by adding a different background color, text color etc to the particular menu item using custom CSS. To apply custom CSS you need to add CSS class for the menu. Below are the steps to add a CSS class to the menu and highlight it using a custom CSS.

    Step 1 – From the WordPress dashboard navigate to Appearance > Menus.Step 2 – Click on Screen Options and tick the CSS Classes checkbox.Step 3 – Click on the menu item that needs to be highlighted.Step 4 – Add CSS class to the menu item and save the changes in the menu. 

    Once the CSS class is added you can add CSS with respect to this class. Make sure you add a dot (.) before the CSS class while writing the CSS code. Below is a sample CSS code that you can try. Note the CSS class used is menu-highlight

    Below CSS will create a simple button out of the menu item:

    .menu-highlight
    {
    background: #d3d3d3;
    border-radius: 35px;
    padding: 0px 20px;
    line-height: 50px !important;
    margin: auto;
    }

    For the above CSS, the highlighted menu will look as shown in the screenshot below –Below CSS will add the outlined button to the menu item: 

    .menu-highlight a{
    color: #ffffff !important;
    background: transparent;
    border-color: #1172c4;
    border-style: solid;
    border-width: 2px;
    border-radius: 50px;
    padding: 0px 10px !important;
    transition: all 0.2s linear;
    line-height:45px;
    }
    .menu-highlight a{
    color:#1172c4 !important;
    }
    .menu-highlight a:hover {
    color: #ffffff !important;
    background: #1172c4;
    border-color: #1172c4;
    }
    li.menu-highlight:hover a{
    color:#ffffff !important;
    }
    .menu-highlight:active {
    border-radius: 22px;
    }

    For the above CSS, the highlighted menu will look as shown in the screenshot below –

    Additional Notes:

    This CSS can be pasted in Customizer ▸ Additional CSS as explained here.You can tweak the CSS code to change the colors and look of the highlighted menu item.

    How to Update Your Payment Method?

    How to Update Your Payment Method?

    Are you looking to update your Payment Method or details related to your account? This document will show you how to do this.

    The method of updating your Payment Method differs based on the payment method you choose when you initially bought your subscription (Credit Card or PayPal).

    Credit/Debit Card – Stripe 

    If you bought your subscription by credit or debit card, this was processed by Stripe on our Store. To update your payment method, please follow these steps:

    Step 1 – Login to your account on our Store and navigate to the Subscriptions page (Account > Subscriptions);

    Step 2 – Scroll to the list of your subscriptions and find the subscription you want to change the payment method for. In the 「Actions」 column, click on the 「Update Payment Method」 button;

    Step 3 – Update the preferred payment method or details. 

    Once you do this, the next payments for the subscription will be automatically debited from the newly set payment source.

    PayPal

    If you choose PayPal as your payment method while initially purchasing your subscription, to change or modify your payment method later, you will need to follow below mentioned few simple steps: 

    Option 1 – Changing the Payment Details:

    If you only need to change the payment details for your PayPal account but not the account itself, you can do this update within your PayPal account. Please check this PayPal document for more details on this.

    Once you modify payment details in your PayPal account, no further actions regarding the Subscriptions are needed on our Store.

    Option 2 – Changing the PayPal Account Details:

    Step 1 – Login to your account on our Store and navigate to the Licenses page (Account > Licenses);

    Step 2 – Scroll down to the list of your license and find the license you want to renew. Click on the 「Renew License」 button in the 「License Details」 column to renew your license manually;

    Step 3 – In the next step, choose your new payment method and payment details – this will create a new subscription;

    Step 4 – Navigate to the Subscriptions page (Account > Subscriptions). Scroll to the list of your subscriptions and find your previous subscription (with old payment details);

    Step 5 – Cancel your previous subscription to avoid double charges for the same license. Feel free to contact us if you need any assistance with canceling your subscription.

    Renewing your license with the new subscription and canceling your previous subscription will not affect your license keys. License and keys will remain the same.

    Note:

    Keep in mind that once you renew the license with new payment details, the subscription will be renewed automatically further on. Thus, the above-mentioned process is only needed when changing your payment method or details.

    This will help you to manage your Payment Method from our Store account.

    Related Docs –

    How Do License Upgrades Work?How to Renew Yearly License?

    Frequently Asked Questions – VIP Care

    Frequently Asked Questions – VIP Care

    What is the difference between VIP Care and Premium Support?We』ve always wanted to offer the best support to our users. The default premium support assures responses within a day while VIP Care takes you higher up the queue and makes sure you are answered as soon as possible.

    What can you expect as a part of our support?We want to be there at every step to help you set things up with our products. You can refer to our support policy to know more.

    Does VIP Care mean I get support on weekends?Generally, our support hours are Monday to Friday. But, since you are a VIP customer, we are here to help you during weekends too!

    How can I submit a VIP support ticket?We have a separate form to identify tickets coming from VIP customers. You must submit a support ticket from the dedicated support page to make sure you are tagged and queued in the correct list.

    How can I opt for VIP Care support?If you are an existing customer and would like to upgrade your support to VIP care, you can purchase the membership from here.

    How to Add Custom Fonts in Astra?

    How to Add Custom Fonts in Astra?

    Although you get a huge collection of system fonts and Google fonts to use from, Astra gives you the freedom to use custom fonts too.

    In order to use Custom Fonts with Astra, you need to install the Custom Fonts plugin available in the WordPress repository. The option Custom Fonts will be available under Appearance. Upload a font file here that you wish to use.

    Here is a great tutorial made by Adam from WPCrafter that explains how this plugin works:

    Update for Add Custom Fonts: Step-by-step Guide

    This step-by-step guide will help you to add and use Custom Fonts plugin on your website

    Install Custom Fonts Plugin To Your Website

    Step 1 – Custom Fonts plugin is available for free on the WordPress repository. To install this plugin, navigate to Dashboard > Plugins > Add New. Search for 「Custom Fonts」 in the search bar in the upper right corner:

    Step 2 – Install and activate the plugin;

    Step 3 – You can now find the plugin options at Dashboard > Appearance > Astra Options > Custom Fonts.

    Downloading the Custom Font

    You can download the fonts you need from multiple sources. Note that some of the fonts you find might have licensing limitations. Importing such fonts to your website using Custom Fonts plugin or some other way doesn』t change these limitations in any way.

    For this guide, we will use Google Fonts just as an example: https://fonts.google.com/. We downloaded the .zip file for Nanum Gothic font from here:

    When you open the .zip file, you will need to export font files (ttf, otf, woff, woff2, etc.) to your computer from it. There can be one or several font files in the .zip file. These can then be uploaded to your website.

    Note:

    It』s important to mention that since Astra theme version 3.6.0, you have the option of self-hosting Google Fonts on your website (Appearance > Customize > Performance > Load Google Fonts Locally). Thus, there is no need to import Google Fonts using the Custom Fonts plugin. You can use this plugin for the fonts downloaded from other sources.

    Upload And Use Custom Font to Your Website

    Once you have your font files and Custom Fonts plugin installed it』s time to upload this font. Let』s start:

    Step 1 – Navigate to Dashboard > Appearance > Astra Options > Custom Fonts;

    Step 2 – Give your font a name. This can be any name you want and which will be recognizable to you. This is how the font will show in the font list in the Customizer. For this example, we will keep the name of the font – 「Nanum Gothic」;

    Step 3 – Select the appropriate Font weight for the font file you』re uploading;

    Step 4 – Select your font file;

    Step 5 – This step is optional. If your font has more variations, scroll down and click on the 「Add Font Variation」. Repeat steps 3 and 4 for each variation you want to add:

    Step 6 – Once you have added all font variations, click on the 「Add New Font」 button on the bottom of the form to save and upload it.

    The font will be automatically added to the font list for all Customizer typography options. To use it, please follow these steps:

    Step 1 – Navigate to the Appearance > Customize;

    Step 2 – Navigate to any Typography option you wish to edit. For this example, we will use the uploaded font at Global > Base Typography;

    Step 3 – When you click on the font dropdown, you will find your new font under the 「Other System Fonts」 section in the list. Select your font here:

    Step 4 – Set the variants you want to use from the available variants (depending on how many you uploaded);

    Step 5 – Click the 「Publish」 button to apply your font.

    Typography Module

    Typography Module

    This is a premium feature available with Astra Pro Addon plugin. To use these pro features, you need to have the Astra theme along with the Astra Pro Addon installed on your website.

    Though you can manage the typography manually at the page builder』s element/module level, it』s important as well as best suggested to manage typography from the default theme options. This will help you to manage fonts throughout your website. Any additional text added while creating a new row or column will match the site』s typography without any efforts taken.

    Astra Pro Typography Module gives you complete control to manage typography from header to footer on your website.

    Quick Steps to Add Font Styling Using the Typography ModuleStep 1: Make sure you have the Astra Pro Addon plugin installed and activated. How to Install Astra Pro Addon plugin?Step 2: Activate the Typography module from the Astra Options under the WordPress Dashboard > Appearance > Astra OptionsStep 3: Visit customizer [ Appearance > Customize > Global > Typography ] to edit module settings

    Header

    This option helps you to set the typography for the primary menu and submenu.

    For below Typography options, navigate to the Customizer > Header > Primary Menu.

    Note: If Site Title and Site Tagline is set to display ( Header > Site Identity ) on the site, typography for both the Header and Site Identity will appear here. 

    Content

    Astra Pro Typography Module gives you complete control for setting the website typography.Along with the font size, you can manage following from H1 to H6:

    With these options, you can try the combinations of various fonts on your website, by simply setting the Font Family for the heading.It』s best suggested to use two to three fonts for a website.

    Button

    Astra Pro Typography Module makes it easy for you to run typography for buttons on all your websites. Like the call to action buttons on your website comes from various elements/modules that you use.

    Blog/Archive

    Archive Summary Box Title

    This box will appear on the archive pages like category, tags, author, publish date, where the title and the description of the archive page will appear. However, this box is not enabled on the Blog page, thus this option will not apply here.

    Blog Post Title | Post Meta

    You can give special treatment to Blog Post Titles and Post Meta with the following typography options.

    Pagination

    This option will appear if you have kept the post pagination option enabled from the Blog Pro Archive settings.

    The font applied to this setting is from the Base typography.This option helps you manage the Text Transform.

    Single Post / Page Title

    You can manage the typography of a single blog post/page title. Locate this option under Customize > Blog > Single Post > Post / Page Title Font.

    Sidebar

    Widget Title | Widget content

    This option lets you manage the typography of the Sidebar widget title and content. Locate this option under Customize > Sidebar > Title Font.

    Footer Widgets

    This option helps you to handle the typography of Footer Widgets. Locate under Customize > Footer > Footer Widgets > Widget Title Font / Widget Content Font

    Footer Bar

    Manage the typography of the main Footer Bar, which appears at the very end of the website. Locate under Customize > Footer > Footer Bar > Content Font

    How to Install Astra Pro Plugin?

    How to Install Astra Pro Plugin?

    A Pre-requisite –

    Please make sure you have the Astra theme installed on your website.

    In order to install the Astra Pro (Addon) Plugin on your WordPress Website, you will have to follow the steps mentioned below.

    Step 1: Log in to our store.

    Step 2: Go to Accounts -> Downloads

    Step 3: Download the Astra Pro plugin. You』ll get an installable zip file on your computer.

    Step 4: On your WordPress website, install the zip file like you install any other plugin.

    Step 5: Activate the plugin.

    Step 6: Activate the Astra Pro Addon license.

    You are all set to create wonders with the Astra Pro Addon! 

    Related Articles —

    Unable to Upload the Astra Pro ZIP File because it is Unzipped During the Download?Do Not See License Activation Form for Astra Pro Addon Plugin?

    How to Upgrade to Astra Pro?

    How to Upgrade to Astra Pro?

    Astra Pro is a plugin that enhances the capabilities of the free Astra theme and adds more features to it. If you』re looking for a solid and fast theme with easy options for customizations, go for Astra Pro Addon. This article will help to understand how you can upgrade from Astra free theme to Astra Pro Addon plugin.

    Refer Astra Pro Addon link here to see all the features it offers. It comes with addons that can be activated and deactivated as per your needs. Therefore, you can select the features that you wish to keep and avoid the rest from bloating your website.

    Where can I purchase Astra Pro?

    On Astra pricing page, you can see packages available for Astra Pro Addon. You can select the ASTRA PRO ADDON package that offers Astra Pro Addon plugin separately while it is bundled with Essential Bundle and Growth Bundle.

    After purchasing the Astra Pro Addon refer an article here to get started with the plugin.

    Blog Pro Overview

    Blog Pro Overview

    This is a premium feature available with Astra Pro Addon plugin. To use these Pro features, you need to have the Astra theme along with the Astra Pro Addon installed on your website.

    Astra theme provides basic options to style the blog archive and single blog page. Refer to the document here. While Blog Pro addon available with Astra Pro adds premium features to these options.

    This module adds more options in the customizer for the blog layouts.

    Quick Steps on How to Design Blog Page Using the Blog Pro ModuleStep 1: Make sure you have the Astra Pro Addon plugin installed and activated. How to Install Astra Pro Addon plugin?Step 2: Activate the Blog Pro module from the Astra Options under the WordPress Dashboard > Appearance > Astra OptionsStep 3: Visit customizer [ Appearance > Customize > Blog ] to edit module settings

    After activating the addon plugin, and activating the Blog Pro Module (Appearance > Astra Options), you will see the additional settings under Appearance > Customize > Blog. Refer following documents to see detailed settings offered by the addon – 

    Blog / Archive PageSingle Post Page

    How to Display WooCommerce Sidebar on Top for Mobile Devices?

    How to Display WooCommerce Sidebar on Top for Mobile Devices?

    When you enable WooCommerce sidebar on a shop, cart, checkout page and/or single product page, the sidebar is displayed in a secondary container.

    What is a secondary container?

    Basically, a container is where the main content and information appears. In general, omit the header and footer part of the website and what remains is the container. The content area and the sidebar are parts of the container. The content area is technically called as the primary container, whereas the sidebar is the secondary container.

    On mobile devices, the primary container stacks on a secondary container. So, the secondary container is displayed below the primary container.

    If you wish to display the sidebar above the primary container on mobile, you would need to use custom CSS code. Necessary CSS code is mentioned below for both sidebars.

    For Left Sidebar-

    @media (max-width: 768px){
    .ast-left-sidebar #content>.ast-container{
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    }
    }

    For Right Sidebar-

    @media (max-width: 768px){
    .ast-right-sidebar #content>.ast-container{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
    .ast-right-sidebar #content>.ast-container>#primary {
    order: 2;
    }
    .ast-right-sidebar #content>.ast-container>#secondary {
    order: 1;
    }
    }

    Where can I put this custom CSS code?

    You can insert this CSS in two ways-

    In Customizer: From WordPress backend navigate to Appearance > Customize > Additional CSS  and add code the custom CSS area. (Recommended) ORThrough child theme』s style.css: Edit the child theme』s style.css and add a required CSS.

    Other useful links-

    How to Install Astra Child Theme?How to edit style.css in a child theme?