Forum Replies Created

Viewing 30 posts - 65,881 through 65,910 (of 67,463 total)
  • Author
    Posts
  • in reply to: Question about dynamic-css.php #130547

    Hi,

    First, upgrade to Enfold 1.8.1. Do you have any plugins that may cause the issue? Try to deactivate them first, see if the Styling works. You can also add css modifications on your custom.css.

    Regards,

    Ismael

    in reply to: youtube play button not visible in slider #130543

    Hi,

    On the youtube settings, you can upload a custom thumbnail. Please upload a thumbnail with the play button.

    This is the current youtube thumbnails: http://img.youtube.com/vi/U36XJaETbh8/maxresdefault.jpg

    Regards,

    Ismael

    in reply to: Image Paddern #130537

    Hi,

    Do you mean padding? Did you try to put them inside a column layout?

    Please check the text block again, see if you have accidentally enter a line break somewhere.

    Regards,

    Ismael

    Hi,

    Please give us a link to the website. You should probably upgrade to Enfold 1.8.1, backup your theme files and database.

    Did you add a new plugin prior to this issue?

    Regards,

    Ismael

    in reply to: Icon color change #130531

    Hi,

    Do you mean the iconbox icons? You can use this on your custom.css or Quick SSS

    .iconbox_icon.heading-color.avia-font-entypo-fontello {
    color: #336699;
    }

    Regards,

    Ismael

    in reply to: How adding social buttons in the header ? (the return) #130528

    Hi,

    We only said that Kriesi is working on it and we can’t be sure when. For the meantime, you can refer to this link.

    https://kriesi.at/support/topic/youtube-icon

    Regards,

    Ismael

    in reply to: Contact Form Malfunction #127748

    Hi,

    You can add this

    #ajaxresponse_1 {
    text-align: center;
    }

    Regards,

    Ismael

    in reply to: Javascript conflict on Add/Edit posts pages #130391

    Hi,

    Looks like the issue has been fixed here: https://kriesi.at/support/topic/javascript-broken-on-post-edit-page

    Regards,

    Ismael

    Hi,

    You can create your own change log to monitor theme files that you modified.

    Regards,

    Ismael

    Hey,

    Glad we could help.

    Cheers,

    Ismael

    in reply to: Mobile sized navigation not working #130018

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: display pages in columns #130083

    Hi,

    You can request to add the function here:

    https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    Hi,

    First,upgrade to Enfold 1.8.1. See if it fixes the issues.

    Increase the wp php memory limit to 128M or higher. Edit wp-config.php, add this code:

    define('WP_MEMORY_LIMIT', '128M');

    If you have .htaccess file, add this code:

    php_value memory_limit 128M

    Regards,

    Ismael

    in reply to: AJAX Search Results #130301

    Hi,

    Open functions-enfold.php, find this code

    //now we got everything we need to preapre the output
    foreach($sorted as $key => $post_type)
    {
    if(isset($post_type_obj[$key]->labels->name))
    {
    $output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
    }
    else
    {
    $output .= "<hr />";
    }

    Replace it with:

    //now we got everything we need to preapre the output
    foreach($sorted as $key => $post_type)
    {
    if(isset($post_type_obj[post]->labels->name))
    {
    $output .= "<h4>Articles</h4>";
    }
    elseif(isset($post_type_obj[page]->labels->name))
    {
    $output .= "<h4>Pages</h4>";
    }
    elseif(isset($post_type_obj[$key]->labels->name))
    {
    $output .= "<h4>".$post_type_obj[$key]->labels->name."</h4>";
    }

    Regards,

    Ismael

    in reply to: Holding Page Error #130560

    Hi,

    Please add this on your custom.css or Quick CSS

    #top.avia-blank #main {
    display: block;
    }

    Regards,

    Ismael

    in reply to: Slide out menu on ipad not working properly #128087

    Hi,

    You can adjust the padding and the font-size of the menu on screen widths just before they switch to mobile or slide menu. Use Media Queries on your custom.css or Quick CSS

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child>li>a {
    padding: 0 7px;
    font-size: 11px;
    }
    }

    Regards,

    Ismael

    in reply to: Custom CSS Class Input Field? #130109

    Hi,

    First, upgrade to Enfold 1.8. Create a test page, add a Text Block for example. Edit the element, you’ll see a custom css field below. You can add a unique css selector for that specific element.

    Regards,

    Ismael

    in reply to: System Error when setting the header #130618

    Hi,

    1.) Re-install the woocommerce plugin, please use the latest version.

    2.) Adding your own social icons is a bit complicated right now. Please refer to this link: https://kriesi.at/support/topic/youtube-icon

    Regards,

    Ismael

    Hi,

    If you only want to remove it from single post view. You can use this:

    .single .big-preview.multi-big, .single .small-preview {
    display: none;
    }

    Regards,

    Ismael

    in reply to: Enfold performs very poorly with Google Chrome #128905

    Hi,

    I visited the site on Chrome: http://www.aqb.com/quickbooks-enterprise/

    It loads approximately in less than 10 secs.

    There are several things you can do to speed up page loads.

    1.) Use CDN.

    2.) Use caching plugin like WT3 Total Cache or WP Super Cache.

    3.) Use minify plugins like bwp-minify.

    4.) Optimize image sizes.

    5.) Upgrade domain host.

    Regards,

    Ismael

    Hey,

    @wacky: Thanks for the tip.

    @skosmer: Go to Enfold > Footer > Copyright > Insert [nolink].

    You can also edit the footer.php manually, find this code

    $kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");

    Regards,

    Ismael

    in reply to: Make Content Elements appear in the LayerSlider WP? #129418

    Hey,

    Glad it’s working now. ;)

    Cheers,

    Ismael

    in reply to: Javascript broken on POST EDIT page #115187

    Hey,

    Glad it is fixed. :)

    Cheers,

    Ismael

    Hi,

    You can decrease the top padding of the main div.

    .fixed_header.social_header #main {
    padding-top: 110px;
    }

    Regards,

    Ismael

    Hi,

    Please send the login details to ///.

    Include “Kriesi” on the subject. Add the url of this thread on your email.

    You can use the Custom Menu widget for the additional navigation on the sidebar.

    Regards,
    Ismael

    Hi,

    Just add this on your custom.css or Quick CSS

    .button.gform_button:hover {
    background: none;
    }

    Regards,

    Ismael

    in reply to: Bloposts don't show headers correctly anymore #130585

    Hi,

    Can you give us a screenshot? I checked the link but I can’t the problem..

    Regards,

    Ismael

    in reply to: color section won't stop #130446

    Hi,

    Try adding an empty 1/1 column or a horizontal rule below the color section. What do you mean by it doesn’t “stop”?

    Regards,

    Ismael

    in reply to: Testimonial Slider #129837

    Hi,

    I’m afraid you have to do it from scratch. Did you check the Trash panel? You can restore deleted posts and pages from there. Anyway, this is the full shortcode for the Pricing page on the dummy data.

    [av_section color='alternate_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='default' shadow='no-shadow']
    [av_table purpose='pricing' caption='']
    [av_row row_style='avia-heading-row'][av_cell col_style='']Private Plan[/av_cell][av_cell col_style='avia-highlight-col']Business Plan[/av_cell][av_cell col_style='']Mega Plan[/av_cell][/av_row]
    [av_row row_style='avia-pricing-row'][av_cell col_style='']10$
    <small>per month</small>[/av_cell][av_cell col_style='avia-highlight-col']20$
    <small>per month</small>[/av_cell][av_cell col_style='']50$
    <small>per month</small>[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']1 GB Bandwidth[/av_cell][av_cell col_style='avia-highlight-col']10 GB Bandwidth[/av_cell][av_cell col_style='']Unlimited Bandwidth[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']10 MB Max File Size[/av_cell][av_cell col_style='avia-highlight-col']50 MB Max File Size[/av_cell][av_cell col_style='']No Maximum File Size[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']3 GHZ CPU[/av_cell][av_cell col_style='avia-highlight-col']5 GHZ CPU[/av_cell][av_cell col_style='']5 GHZ CPU[/av_cell][/av_row]
    [av_row row_style=''][av_cell col_style='']256 MB Memory[/av_cell][av_cell col_style='avia-highlight-col']1024 MB Memory[/av_cell][av_cell col_style='']4 GB Memory[/av_cell][/av_row]
    [av_row row_style='avia-button-row'][av_cell col_style=''][av_button label='Get Private Plan' link='manually,http://' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='medium' position='center' icon_select='yes' icon='25']

    [/av_cell][av_cell col_style='avia-highlight-col'][av_button label='Get Business Plan' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='medium' position='center' icon_select='yes' icon='29']

    [/av_cell][av_cell col_style=''][av_button label='Get Mega Plan' link='manually,http://' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='medium' position='center' icon_select='yes' icon='44']

    [/av_cell][/av_row]
    [/av_table]
    [/av_section]

    [av_one_half first]
    [av_heading heading='Business Plan Info' tag='h3' color='meta-heading' style='' padding='10']

    [av_textblock ]
    Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4>Nulla consequat massa quis enim?</h4>
    [av_dropcap1]D[/av_dropcap1]onec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    <h4>Vivamus elementum semper nisi?</h4>
    [av_dropcap1]A[/av_dropcap1]enean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius lallus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.
    <h4>Aenean imperdiet?</h4>
    [av_dropcap1]E[/av_dropcap1]tiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.
    [/av_textblock]
    [/av_one_half]

    [av_one_half]
    [av_heading heading='Mega Plan Info' tag='h3' color='meta-heading' style='' padding='10']

    [av_textblock]
    Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum.
    <h4>Aenean imperdiet?</h4>
    Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4>Nulla consequat massa quis enim?</h4>
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus.
    <blockquote>Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.</blockquote>
    Aenean commodo ligula eget dolor. Aenean <strong>massa</strong>. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
    <h4></h4>
    [/av_textblock]
    [/av_one_half]

    [av_heading heading='FAQ' tag='h3' color='meta-heading' style='' padding='15']

    [av_toggle_container initial='1' mode='accordion']
    [av_toggle title='Are there additional costs?']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. <strong>Aenean</strong> massa. Cum sociis natoque penatibus et magnis dis parturient montes, <strong>nascetur</strong> ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_toggle]
    [av_toggle title='Support Included?']
    Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. <strong>Vivamus</strong> elementum semper nisi. Aenean vulputate eleifend tellus.
    [/av_toggle]
    [av_toggle title='How to set up the theme?']
    Nullam sagittis. Suspendisse pulvinar, augue ac venenatis <strong>condimentum</strong>, sem libero volutpat nibh, nec pellentesque velit pede quis nunc. Vestibulum ante <strong>ipsum</strong> primis in faucibus orci luctus et ultrices posuere cubilia Curae; Fusce id purus. Ut varius tincidunt libero. Phasellus dolor. Maecenas vestibulum mollis
    [/av_toggle]
    [av_toggle title='What about Refunds?']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_toggle]
    [av_toggle title='Can I change Plans or cancel at any time?']
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <strong>Aenean</strong> commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.
    [/av_toggle]
    [/av_toggle_container]

    [av_section color='socket_color' custom_bg='' src='' position='top left' repeat='no-repeat' attach='scroll' padding='default' shadow='no-shadow']
    [av_promobox button='yes' label='Sign Up' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='large' icon_select='yes' icon='6']
    Start your no-strings-attached free trial! Your first 30 Days of use are free and if you are unsatisfied at any point in the future we give you a full refund on your last payment!
    [/av_promobox]
    [/av_section]

    Regards,

    Ismael

    Hey,

    Thanks for the tip Q.

    You can also add this on your custom.css or Quick CSS

    .title_container {
    display: none;
    }

    Regards,

    Ismael

Viewing 30 posts - 65,881 through 65,910 (of 67,463 total)