Forum Replies Created

Viewing 30 posts - 57,001 through 57,030 (of 67,197 total)
  • Author
    Posts
  • in reply to: Easy slider in html #293757

    Hey odmv91!

    Thank you for visiting the support forum!

    I checked the website but I don’t see two sliders appearing at the same time. I tested it using Chrome Windows 8.

    Regards,
    Ismael

    in reply to: Enfold Demo #293756

    Hey Kate!

    Thank you for using the theme.

    Please go to Enfold > Export/Import panel then click the Import Dummy Data. :)

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    in reply to: How Punch Fonts work w/ theme? #293755

    Hi P. Bert!

    Thank you for using the theme.

    I’m sorry but the theme doesn’t include a new plugin called Punch Font and I’m not sure if such plugin exist. Are you sure you’re using Enfold? Do you mind if we take a look at the actual website?

    Best regards,
    Ismael

    Hi!

    Thank you for using the theme.

    Try to set the width of the boxed layout to 90% when viewing on smaller screens. Add this on Quick CSS or custom.css:

    @media only screen and (max-width: 767px) {
      .responsive .boxed#top {
        width: 90%;
      }
    }

    Adjust the width if necessary.

    Regards,
    Ismael

    in reply to: Social icons overlap logo on iphone #293751

    Hi fgrippe!

    Thank you for using the theme.

    Please post the website URL here. We would like to check it. I’m sure we can fix it via CSS.

    Cheers!
    Ismael

    in reply to: Background color before Background Video Load. #293746

    Hey CloudChoice!

    Thank you for visiting the support forum!

    Edit the color section then add a Custom Background Color. Change it to white.

    Regards,
    Ismael

    Hi Riavon!

    Thank you for using the theme.

    It’s actually not possible without modifying the theme files but I tried to recreate what you want via CSS:

    .template-single-blog {
    width: 100% !important;
    }
    
    .template-single-blog main.content.units.twelve.alpha {
    	width: 100%;
    }
    
    .template-single-blog main.content.units.twelve.alpha article > *, .template-single-blog main.content.units.twelve.alpha > * {
    	width: 1030px;
    	margin: 0 auto;
    	float: none;
    }
     
    .template-single-blog main.content.units.twelve.alpha article .big-preview.single-big, .template-single-blog main.content.units.twelve.alpha article {
    	width: 100%;
    }

    You need to use media queries to change the width of the blog post content.

    Best regards,
    Ismael

    in reply to: Padding Above Page Text and Below Header #293739

    Hi c2bailey!

    Thank you for visiting the support forum!

    Please post the url of the actual page here. We would like to check it. A screenshot will help. Try to adjust the content padding with this on Quick CSS or custom.css:

    .content {
    padding-top: 10px;
    padding-bottom: 10px;
    }

    Cheers!
    Ismael

    in reply to: Google Fonts Problem #293736

    Hi arthurhpaulino!

    Thank you for using the theme.

    The code looks correct. Please edit functions.php, find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,700,300,200';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Yanone Kaffeesatz'] = 'Yanone Kaffeesatz:400,700,300,200';
    return $fonts;
    }

    Best regards,
    Ismael

    in reply to: Contact form does not work. #293735

    Hi!

    Thank you for using the theme.

    Please try to use the Contact Form 7 or Gravity Forms, see if that works. You need to check the server configuration if both plugins don’t work. Our contact form use the standard wp_mail function: http://codex.wordpress.org/Function_Reference/wp_mail to send emails. Please contact your server administrator for more info.

    Regards,
    Ismael

    in reply to: Open inline element directly in the address bar (url) #293733

    Hey CloudChoice!

    Thank you for using the theme.

    I’m sorry but what do you mean by “opening inline element in the address url”? Can you please explain it a little bit further?

    Cheers!
    Ismael

    in reply to: Layer Slider #293731

    Hey!

    Glad you figured it out. The slider looks awesome. Good job. :)

    Cheers!
    Ismael

    in reply to: Icon Color #293714

    Hey 500Webmaster!

    Thank you for using the theme.

    Use this for the background and icon color:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: blue;
    color: red;
    }

    Regards,
    Ismael

    in reply to: Portfolio hover effects on single pictures #293712

    Hi!

    Did you use the advance layout builder to create the page? If yes then edit the homepage, look for the “Taladrado” image for example. On the image options, look for the Image Link. It is set to “No Link” by default so you have to add a link to those images either manually, or via lightbox etc.

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Best regards,
    Ismael

    in reply to: Contact Form Elements #293711

    Hey 500Webmaster!

    Thank you for visiting the support forum!

    1.) Add this on Quick CSS or custom.css:

    form.avia_ajax_form h3 {
    margin-bottom: 20px;
    }

    You can also leave the title field blank then add a special heading on top of the contact form element.

    2.) Use this to change the initial state of the button:

    .main_color input[type='submit'] {
    background: red;
    color: #ffffff;
    border-color: black;
    }

    This one for the hover state:

    .main_color input[type='submit']:hover {
    background: black;
    color: #ffffff;
    border-color: red;
    }

    Regards,
    Ismael

    in reply to: The distance between menu and header or content #293708

    Hi Pearwcz!

    Thank you for using the theme.

    Just to clarify, you want to add a space below the menu? You can do it via CSS or add a horizontal rule element. Set it as white space then adjust the height. If possible, please give us a link to actual page.

    Best regards,
    Ismael

    in reply to: top navigation language selector #293706

    Hi!

    Glad we could help. If you still have questions, let us know. :)

    Regards,
    Ismael

    Hi!

    If you’re using the blog grid layout, edit config-templatebuilder > avia-shortcodes > postslider.php file. I’ll ask the rest of the support team to check the thread. Maybe they are available. If not, please hire a freelance developer to modify the blog for you.

    Best regards,
    Ismael

    in reply to: No main menu #293703

    Hey!

    The code should work. Please remove browser cache then reload the page a few times. Give us the link to the actual website so that we can inspect it.

    Best regards,
    Ismael

    Hi!

    Did you regenerate the thumbnails after you change the thumbnail size? The theme will resize the catalog images to 450x450px by default so you have to upload larger image than the default size. The best way is to resize them to 450x450px using image editor before uploading them as product image.

    Best regards,
    Ismael

    in reply to: History line #293701

    Hey mikel!

    Thank you for using the theme.

    You can utilize the color sections and the fullscreen slider. Add backgrounds, image or video then enable the scroll down arrow navigation on the slider. Create a one page navigation, refer to this link: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    Regards,
    Ismael

    in reply to: cannot change test / Problems with audio player #293699

    Hi!

    Unfortunately, for now, you need to use a plugin for the playlist. I tested this plugin and it works well enough: https://wordpress.org/plugins/html5-mp3-player-with-playlist/installation/

    Cheers!
    Ismael

    in reply to: social icons in posts #293698

    Hi!


    @RadioBardak
    : Just add this on Quick CSS or custom.css:

    .av-share-box {
    display: none;
    }

    Regards,
    Ismael

    Hey RRJ!

    This is a problem with Chrome not rendering 3D transitions properly. We reported the issue to Kriesi. Please wait for his response. Try to deactivate all plugins, see if that changes anything. Remove browser cache then test it again.

    Regards,
    Ismael

    Hey jedasim!

    Thank you for visiting the support forum.

    You can use this on Quick CSS or custom.css:

    #menu-item-1765 span.avia-menu-text {
    background: red;
    padding: 5px;
    color: white;
    }

    Regards,
    Ismael

    in reply to: Layerslider and Chrome #293691

    Hey!

    Thank you for the heads up.

    Yes, unfortunately, I can reproduce the issue on my end. Not sure why 3D transitions doesn’t work on Chrome so I’ll ask Kriesi and Dude to take a look. Please wait for their response.

    Cheers!
    Ismael

    in reply to: Remove image preview for video on mobile #293690

    Hey!

    Thank you for using the theme.

    If you want to use the fallback image on the fullwidth easy slider, you need to use the video slide. Remove the iframe code that you added then use this URL for your video http://vimeo.com/100462310. Add a fallback image. The video will play on desktop view then show the fallback image on mobile devices.

    Best regards,
    Ismael

    in reply to: One page website menu header #293689

    Hey!

    Thank you for the info but I guess you’re doing it wrong. Please refer to my answer above.

    Regards,
    Ismael

    in reply to: Video Background Transparency #293688

    Hey mikel!

    Thank you for using the theme.

    Are you using the color section? Add an id to it, transparent-bg for example. Add something like this on Quick CSS or custom.css:

    #transparent-bg:before {
    content: '';
    display: block;
    width: 100%;
    min-height: 1000px;
    background: rgba(255,255,255,.4);
    z-index: 9999;
    position: absolute;
    }

    Cheers!
    Ismael

    in reply to: Use latest page as start page instead of latest post #293687

    Hi ev0l_!

    Thank you for using the theme!

    I’m not sure if there’a a way to automatically schedule a page as frontpage. You can actually use the advance layout builder for post. Edit wp-content > themes > enfold > config-templatebuilder > avia-template-builder > config > meta.php, find this code on line 5:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    Replace it with:

    array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('portfolio','page', 'post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    

    If you don’t want to do this, just use the shortcode wand.

    Regards,
    Ismael

Viewing 30 posts - 57,001 through 57,030 (of 67,197 total)