Viewing 30 results - 4,021 through 4,050 (of 11,211 total)
  • Author
    Search Results
  • mbioscience
    Participant

    I’m using the latest ENFOLD 4.5. When I set the Blog post on a page, the page showing all the Blog posts’ excerpt but when I click on the Read More button of a single Blog post, the page just refreshed itself. I can’t access to the full article of a Blog post. Could you assist me with this?

    And also how to update and remove the Twitter and RSS feeds icon on Blog Display page? Thank you.

    #1038755
    catchbudapest
    Participant

    Hi,

    since I am using groups to organize my newsletter/subscribers, I can not use the standard Enfold “MailChimp signup element”; instead I had to play around with the MailChimp code for embedded forms.

    So what I did is to hide my groups and to precheck one of the groups.

    So far so good. I also managed to get the 3 fields inline, but I am not yet satisfied with the layout.

    I would like to have the 3 fields (email address, first name and submit button) distributed with each 1/3 width, as it can be done with the Enfold “MailChimp signup element”.

    See this screenshot here:
    The form above is done with the Enfold Element, the form below with the MailChimp code for embedded forms.

    How could I get the same layout with the embedded code?

    Currently I am using the following CSS-code (the entire Mailchimp-code is wrapped in a div named “horizontal-mailchimp”):

    .horizontal-mailchimp .mc-field-group,
    .horizontal-mailchimp .clear {
         display: inline-block; 
    }
    
    .horizontal-mailchimp label {
         display: block;
         height: 1px;
         text-indent: -9999px;
    }
    
    .horizontal-mailchimp {
         text-align: center;
    }
    
    @media only screen and (max-width: 768px) {
    
         .horizontal-mailchimp .mc-field-group,
         .horizontal-mailchimp .clear,
         .horizontal-mailchimp input {
              display: block;
              width: 100%;
         }
    
         .horizontal-mailchimp .mc-field-group {
              margin-bottom: 5px;
         }
    		
    }

    Here is the page where I want to add this signup form.
    I used/kept the (hidden) Enfold Mailchimp signup element just for reference.

    • This topic was modified 7 years, 3 months ago by catchbudapest. Reason: small corrections
    #1038405

    Hi Nikko

    i done customization for character limit i have made some changes in avia-builder.js and placed in enfold-child folder same as enfold parent folder structure but after that the WordPress core functionality that is when i go to add new user the password generation button not working.
    can you please suggest me the good way to replace avia-builder.js file in enfold-child folder

    Thanks In Advance

    #1037951
    victoria
    Participant

    Trying to replicate the demo, the Menu Item Button has a border radius. Adding this into the Advanced Styling does not work. On further investigation, the Advanced Styling is not working.

    also…
    On the services page in the demo, there are nice icons showing in circles, but these are not loading in my set up.

    Thank you Vicky

    #1037950
    binary_magenta
    Participant

    Hi,
    We want to track an user interaction as well, regarding when the form is submitted – So the click on the send-button itself. We created in GoogleAnalytics a goal as well. The contact form is displaying a message that the form has been sent, so it is not directing to a thankyou-page (which can be set up in Analytics’ goal as well).

    I tried “onsubmit” instead onclick as well but during testing (even in inkognito mode or different pc ) it seems not to track.

    I inserted the following snippet into the child’s theme functions.php:

    add_filter(‘avf_contact_form_submit_button_attr’,’avia_add_submit_attributes_to_cf’, 10, 3);
    function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
    $gaq = “_gaq.push([‘_trackPageview’, ‘UA-111111111-1’]);\””;
    $att = “onclick=\”ga(‘send’, ‘event’, ‘Senden’, ‘Kontakt’, ‘Senden’);\” “;
    return $att;
    }

    PS: UA-111111111-1 just represents the ID
    PPS: I love your theme – already bought it several times.

    Thanks in Advance :)

    #1037916

    Hi,

    The changes you made to the menu looks good on my end. The “Weddings” menu is hidden on mobile.

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1037768

    Hello, again

    I figured it out except for one very simple question, please. I looked at the docs and added this to my functions.php in my child theme directory –

    <?php
    
    //--------------------------------
    
    // Header widget area
    
    //--------------------------------
    
    add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }
    
    ?>

    Then I created a new widget called ‘header’, and added in some basic custom HTML to create a text link –

    Register Now

    Then I added the css to style and adjust the position of the register ‘button’ –

    /* Widget text and background */
    
    #top #header #header_main .widget {
        line-height: 88px; /* tweaks the vertical height of the text */
        color: red;
        /* background: green; just to see where it sits on the screen */
    	text-align: right;
    	margin-right: 80px;
    	min-height: 150px; /* same as custom main menu height */
    }
    
    /* Widget title */
    
    #top #header #header_main .widget h3.widgettitle {
        color: #ff00ff;
    }
    
    /* Widget link */
    
    #top #header.header_color #header_main .widget a {
    	font-family: 'interstate-regular';
    	font-weight: normal;
    	font-style: normal;
    	font-size: 15px;
    	letter-spacing: 4px;
    	text-decoration: none;
    	text-transform: uppercase;
        color: #41ab97;
    	padding: 5px 15px;
    	border: 1px solid #41ab97;
    	min-width: 240px; /* using this to make all site buttons the same width */
    }
    
    #top #header.header_color #header_main .widget a:hover {
        background: #41ab97;
        color: #fff;
    }
    
    /* widget id - does the same as text & bg, above */
    
    #custom_html-6 {
    
    }
    

    It worked perfectly, but when scaling down to mobile, I’ve added in a gray background just to see what it’s doing and I’m trying to reduce the height of the widget block – I set it to 75 (half of what it is on desktop), but it’s not taking effect. Of course, I could simply hide the gray background and it’s sitting perfectly with some tweaking to the css, but I’d like to know how to target that gray area to make it a smaller height. Here’s what I have but the max-height is not working.

    I’d like to know how to target that gray to make it 75 or something close to that :)

    /************************** break point 989 *******************/
    
    @media only screen and (max-width: 989px) {
    	/* start */
    
    /* Widget text and background */
    	#top #header #header_main .widget {
    	    background: gray;		
    	    line-height: 30px; /* reduced vertical height - 88px for desktop */
    		margin-right: 60px;
    		max-height: 75px !important;  /* reduced from desktop size of 150 custom main menu height */
    	}
    
    /* end max 989 */
    }

    And then on smaller mobile I simply hide the widget –

    /************************** mobile to tablet portrait *******************/
    
    @media only screen and (max-width: 767px) {
    	/* start */
    
    	/* Widget text and background - hide register button */
    
    	#top #header #header_main .widget {
    		display: none !important;
    	}				
    
    	/* end max 767 */	
    }
    
    #1037725

    In reply to: whatsapp coloured

    Hi,


    @brunet77
    please refer to this post – https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options and if that does not help, please start a new thread under Enfold sub forum and attach WP admin logins in private content field so we can solve the issue for you.

    Best regards,
    Yigit

    #1037705

    Hi,

    Thank you for sharing the credentials.

    1. I checked your site and noticed you have the same class name added to both the tab and tab content area. Maybe it is causing an issue with the script.

    2. Is the [mainfinal] a custom shortcode or is it from a plugin?

    Would you be ok to try an alternate solution? It works exactly the same way but using a color section instead of the tabs.

    Instead of using a tab you can add the tab content inside of a color section and display the section on which users click.

    Best regards,
    Vinay

    #1037454
    Max
    Participant

    Hallo zusammen,
    ich hoffe, ihr könnt mir hier weiterhelfen.
    Ich würde gerne die Buttons im Bereich der Kasse etwas “schicker” anordnen. Die aktuelle Positionierung könnt ihr dem beigefügten Bild entnehmen. Das “- or -” und den Paypal Button hätte ich gerne in einer Reihe mit dem “Weiter zur Kasse” Button.

    Noch eine Frage an dieser Stelle: Wo kann ich im Enfold Theme ein anderes Bild für den Paypal Button hinterlegen und das “- or -” übersetzen in das deutsche “oder”?

    An dieser Stelle schon mal vielen Dank für eure Rückmeldungen!

    Viele Grüße
    Christian

    #1037405

    I was able to put this together as a completed solution for Enfold Shortcode Button

    [thrive_2step id=’25993′][av_button label='Church Retreat Plans - Discover' link='’manually,http://‘ link_target='’_blank’' size='small' position='center' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-5obiu2i'][/thrive_2step]

    I hope this is solution is helpful to others

    #1037282
    kpenner36
    Participant

    How do I put shortcode into an Enfold button?

    Here is the shortcode:

    [thrive_2step id=’25993′]Hosting Plan[/thrive_2step]

    #1037281

    How do I put the shortcode from Thrive Themes into an Enfold button?

    [thrive_2step id=’25993′]Hosting Plan[/thrive_2step]

    #1037273
    Takara22
    Participant

    I’m trying to use the Events Manager Plugin for wordpress with Enfold. It’s a very highly rated and recommended free plugin that allows you to create recurring events and many other features that you have to pay for the pro version to get with other plugins. Anyway, I’ve tried to create the first event using the plugin and the save draft, preview, and publish buttons are not active. HELP!

    #1037261

    Topic: html – CSS

    in forum Enfold
    vnfan
    Participant

    Hi enfold team,
    I have many html codes on my website. I want to reduce them.
    e.g:
    <h4>xxxx</h4>
    <p style=”font-size: 18px; margin-bottom: 30px;”>xxx</p>
    <p style=”padding-bottom: 19px;”>xxx/p>
    <p style=”text-align: right;”>[av_button label='zur Reise' link='xxx' title='xxx' size='medium' position='right' color='custom' custom_bg='#eb6a07' custom_font='#ffffff' min-width='150px' av_uid='av-4640to6']</p>

    My CSS:
    .privatreise h4 {font-size:24px!important;margin-top:15px; margin-bottom:-8px;}
    .privatreise p::first-line {font-size:18px; margin-bottom:30px;}
    .privatreise p::second-line {padding-bottom:19px;}

    they work only with h4, not p. Could you please help me with the button?

    #1037206
    Stegemueller
    Participant

    He Enfold
    I need to make a print option, that does not include the sidebar on i.e. this site https://testblog.stegemueller.dk/wp/ or this site.

    I know questions about print have been asked many times but I really can’t find the best method for my needs, and I am not good at coding or CSS (but I am good at copy paste :-)

    Is it also possible you can help me with a solution for a print button?

    Thank you very much in advance
    Hanne

    • This topic was modified 7 years, 4 months ago by Stegemueller.
    #1037099

    Hi Ismael,

    Thanks for getting back to me. In trying to basically put a band-aid on the online store, I did go over to WooCommerce > Settings > Products and ticked both checkboxes for ‘Redirect to Cart page after successful addition’ and ‘Enable AJAX add to cart buttons on archives’

    I did this in hopes that it would allow everything to communicate better to get past the cart issue. However, I believe it is still an issue we’re having. Looking back at the past few days worth of traffic and conversions, the rate is much lower than usual. For example, yesterday we had 2 purchases after 19 cart views. As these are members being influenced to buy a limited-time discount card, our usual % of purchases to cart views is at least in the 50% range.

    I do wonder if this could have been perhaps caused by slow internet? A lot of times, when updating plugins or the theme at my workplace (about 10mbps on a good day), the server can time out. That said, with the new token system for Enfold theme, I don’t know how best to unistall and reinstall the theme to see if that could be the issue.

    Overall, literally any help or thoughts here would be fantastic. I’m at a loss as I can’t identify the problem to begin to find a fix. And, that’s made less fun by an unhappy boss and the holiday selling season right now.

    Thanks again!

    #1036954
    Søren Nielsen
    Guest

    Hello!
    I have once bought an ENFOLD theme – which I find very good for my needs. The problem is, that I do not get update messages and I still have version 3.8.5 and I see that there have been a lot of updates.
    With my current version of the theme I have some problem after ftp is upgradet to 7.2 – among them the avia builder is not working correctly (e.g. I can not put link in buttons and slides)

    Will an upgrade of the theme to newest version solve the problem?
    If I upgrade, how do I have to do this. I have a Purchase code which I got when I bougt the theme (please see private content.) Should I just by the new theme and then upload it and activate it? Or should I do it another way Is there a way I can put product key in somwhere, so I get notofocation on updates of theme in my adwords dashboard?
    Thank you very much in advance.
    Ragards
    Soren

    #1036942
    irmproduktion
    Participant

    Hi,
    I would like to create a button like the one in you demo: https://kriesi.at/themes/enfold-startup/
    I can´t figure out how. Can you give me a hint?
    Best Regards,
    Linda

    #1036805

    Hi Victoria,

    sure, I want to do the same as per https://www.the-ivy.co.uk.
    As you can see there is an address on the left of the logo and a button on the right.
    I know you can activate widget for the header in enfold, and I found an article that explain how to do that, but it is not very clear.
    Can you help me with that?
    My website is still not online (at the moment I have a “Coming soon” page), but I can give you the credentials if you want to check

    Thanks
    Francesca

    #1036388

    Hey Tomatito11,
    Creo que te gustaría hacer cajas como estas:
    2018-11-21-230607
    estos se crean con una columna con un color de fondo y luego se agregan los íconos, el texto y los elementos de los botones.
    2018-11-21-231030
    A continuación se muestra el código del depurador para la sección, de modo que puede agregarlo a su sitio y ver cómo se crea.
    Enable Avia Layout Builder Debug

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-qet8u']
    
    [av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf100' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Insurance Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula dolor.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#0a0a0a' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf106' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Real Property Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='#072f4c' background_gradient_color2='#0c4771' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf10b' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Construction Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">In enim justo ut, imperdiet a, venenatis vitae, justo. Donec pede justo, fringilla vel eget, arcu.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' custom_margin='aviaTBcustom_margin' margin='6%,0' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf120' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Traffic offense' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='#072f4c' background_gradient_color2='#0c4771' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf119' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Citation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">In enim justo ut, imperdiet a, venenatis vitae, justo. Donec pede justo, fringilla vel eget, arcu.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf114' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Jury Selection' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][/av_section]

    — Translated with Google —
    I believe you would like to make boxes like these:
    2018-11-21-230607
    these are created with a column with a background color, and then the icon, text, and button elements added
    2018-11-21-231030
    below is the debugger code for the section, so you can add it to your site and see how it is built.
    Enable Avia Layout Builder Debug

    [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' custom_arrow_bg='' id='' color='main_color' background='bg_color' custom_bg='' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0' av_uid='av-qet8u']
    
    [av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='' background_gradient_color2='' background_gradient_direction='vertical' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf100' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Insurance Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(34, 34, 34)']
    <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula dolor.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#0a0a0a' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf106' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Real Property Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='#072f4c' background_gradient_color2='#0c4771' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf10b' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Construction Litigation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">In enim justo ut, imperdiet a, venenatis vitae, justo. Donec pede justo, fringilla vel eget, arcu.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' custom_margin='aviaTBcustom_margin' margin='6%,0' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf120' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Traffic offense' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_color' background_color='#072f4c' background_gradient_color1='#072f4c' background_gradient_color2='#0c4771' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf119' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Citation' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">In enim justo ut, imperdiet a, venenatis vitae, justo. Donec pede justo, fringilla vel eget, arcu.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][av_one_third min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px,70px' link='' linktarget='' link_hover='opacity80' padding='40px' padding_sync='true' border='' border_color='#f2f2f2' radius='3px' radius_sync='true' background='bg_gradient' background_color='#094978' background_gradient_color1='#094978' background_gradient_color2='#105e96' background_gradient_direction='diagonal_bt' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_breaking='' mobile_display='' av_uid='av-9wkhy']
    
    [av_font_icon icon='uf114' font='justice' style='' caption='' link='' linktarget='' size='70px' position='center' color='#ffffff' av_uid='av-jgf8v45f' admin_preview_bg='rgb(34, 34, 34)'][/av_font_icon]
    
    [av_heading tag='h2' padding='10' heading='Jury Selection' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' margin='25,,,'][/av_heading]
    
    [av_textblock size='' font_color='custom' color='#ffffff' av-medium-font-size='' av-small-font-size='' av-mini-font-size='' av_uid='av-jgds8wgh' admin_preview_bg='rgb(255, 255, 255)']
    <p style="text-align: center;">Donec quam felis, ultricies nec eu, pretium quis, sem. Nulla consequat massa quis enim.</p>
    [/av_textblock]
    
    [av_hr class='invisible' height='20' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' av_uid='av-jgf4q5kq' admin_preview_bg='']
    
    [av_button label='Learn more' link='page,824' link_target='' size='large' position='center' label_display='' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue879' font='entypo-fontello' color='custom' custom_bg='#ffffff' custom_font='#000000' av_uid='av-jgf4ovnq' admin_preview_bg='']
    
    [/av_one_third][/av_section]

    Best regards,
    Mike

    Adam
    Participant

    Hello, i am following along with the instructions here https://kriesi.at/documentation/enfold/add-button-elements-to-your-header/ but I am unable to add buttons to the header. website and login below. can someone take a look and help me out? one issue i am having is i do not see “performance” so i cannot disable “merging and compression” for CSS and JS files. I am not sure if this is the issue?

    • This topic was modified 7 years, 4 months ago by Adam.
    #1036067
    inkinch
    Participant

    Hi,
    I’m using Enfold, with header set: Logo entered and menu below.
    I would like to add an address on the left of the logo and a button on the right, in the header section, same alignment of the logo.
    I’m trying to follow the Enfold Docs but I’m totally lost on how to “Add the JS and PHP scripts to your child theme functions.php file”
    Can you please help me with that?
    Thanks
    Francesca

    #1035988

    Hey Craig,

    Thank you for using Enfold.

    That button is visible on my installation. Have you tried disabling the plugins? Maybe, there’s a conflict somewhere.

    Best regards,
    Ismael

    #1035827
    trunky32
    Participant

    Hi,
    I have an issue with the Enfold theme on mobile, when I use the full width easy slider it crops off the 2 buttons that I have on the slider.
    I have read all the topics on this but I have been unable to solve it.
    Could you please help?
    Thanks
    Justin

    #1035808
    nymetrowx
    Participant

    Hi all,

    I currently have a fully functioning website running Enfold. I really like the theme of the Enfold Minimal and was looking to use that general theme for the website. My question is this:

    What happens when I import a demo? Are the contents of my website deleted (pages, images etc)? Or is the current website just updated to fit that general theme?

    I want to clear this up before hitting the “import” button

    Thank you!

    #1035748

    Hey DigitalEssence,

    You can follow our doc to add a widget area to the header:

    Then add the button tag to the widget.

    Best regards,
    Jordan Shannon

    #1035711
    DigitalEssence
    Participant

    Hi,

    we are using an online booking system for the website and to link to this the devs have supplied documentation which states:

    Add the following code just before </body>

    <script id="guestline-tag" src="https://tag.guestline.net/static/js/tag.js" data-group-id="TONTINEHOT" async></script>

    Code example, adding the tag to a Button:

    <button data-guestline-redirect="true">Book Now</button>

    Is there an easy way to add this button to the Enfold menu in the header or is it a case of editing the template to manually insert this?

    Thanks.

    #1035635

    In reply to: Color link footer

    Hi,

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    You can also try the CSS in the below link

    If you still have an issue please open a new ticket and share the link to your site.

    Best regards,
    Vinay

    #1035604

    Hey Gitte,

    To toggle a section when a button is clicked please check https://kriesi.at/documentation/enfold/button/#toggle-id-7

    Just add your comments inside a color section.

    In case, if you are using a sidebar on the blog page, just add your comments inside a column which suits your design.

    Best regards,
    Vinay

Viewing 30 results - 4,021 through 4,050 (of 11,211 total)