Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #1123231

    Hi, how can I align this text.
    Here is ss > https://imgur.com/a/ioVYMZ7
    Here is url to this page > https://l2p-league.com/
    Here is ss how it looks like inside > https://imgur.com/a/6Pg2NSx

    PS: Centering will not help.

    #1123495

    Hey buciks1,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #av_section_2 .av_font_icon {
        display: block;
        text-align: center;
        min-height: 85px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1123628

    Works, thanks!
    How can I put there my private icons?

    #1123682

    Hi,

    What do you mean “private icons?”

    Best regards,
    Jordan Shannon

    #1123693

    My own icons

    #1123754

    Hi,

    Refer to the following:

    Best regards,
    Jordan Shannon

    #1125319

    Thanks, but I don’t see there an option to upload my own icon :/

    #1125328

    I have a question. How can I download and upload only 1 icon from “flaticon” website instead of uploading all pack? Because only packages are able to be added to the enfold as I see.

    #1125609

    Hi,

    In that case you would add the following to functions.php:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Changed “fontello” and the icon id to the one you would want to use respectively.

    More info found here:

    Best regards,
    Jordan Shannon

    #1125907

    Where can I find functions.php:

    #1125983

    Hi,

    It is within Appearance > Theme Editor > Functions.php.

    Or in the root file of your site. Wp-content > themes > Enfold > Functions.php

    Best regards,
    Jordan Shannon

    #1126073

    Changed “fontello” and the icon id to the one you would want to use respectively.

    How can I know id of icon if it’s not added to the Enfold. I know only the name of this icon

    #1126865

    Hi buciks1,

    When you hover over the icon in the Advanced Layout Builder element where you can choose an icon you can see the code.
    You can read about it in the docs here

    Best regards,
    Victoria

    #1127025

    I have a question. How can I download and upload to the enfold only 1 icon from “flaticon” website instead of uploading all pack? Because only packages are able to be added to the enfold as I see.

    This was my main question. So I can’t go to the “Advanced Layout Builder” becasue there is no my icon.

    • This reply was modified 5 years, 3 months ago by buciks1.
    #1128176

    Hi,

    Please open a new ticket for different issues. It will help us keep the ticket related to the topic and easy to resolve.

    Thank you for your co-operation.

    Best regards,
    Vinay

Viewing 15 posts - 1 through 15 (of 15 total)
  • You must be logged in to reply to this topic.