Forum Replies Created

Viewing 30 posts - 12,781 through 12,810 (of 14,834 total)
  • Author
    Posts
  • Hey DeveZon!

    You have a bunch of code blocks surrounding your content. Switch to the HTML editor and remove them.

    If you do not see them in the HTML editor then try deactivating all of your plugins.

    If your still having problems then send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Background image in header? #366892

    Hi Effektid!

    If you navigate to Dashboard > Enfold > General Styling you can upload a background image for the logo area. You can also change the size of your header in Dashboard > Enfold > Header and set it to a custom pixel value.

    If that’s not working for you then send us a link and we’ll take a look. You can set your reply as private if you wish.

    Best regards,
    Elliott

    in reply to: Columns within Tabs #366887

    Hey SiteBuilder!

    Yes, you would need to switch to the default editor and then copy and paste the shortcodes inside each other so they are nested.

    Or you can do this, http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/, and copy / paste them inside each other in the debug view of the advanced layout editor though it would be better to use the default editor.

    The code would look something like this.

    [av_tab_container position='top_tab' boxed='no' initial='1']
    [av_tab title='Tab 1']
    [av_one_half first][/av_one_half]
    
    [av_one_half][/av_one_half]
    [/av_tab]
    [av_tab title='Tab 2']
    
    [/av_tab]
    [/av_tab_container]

    Best regards,
    Elliott

    in reply to: Having videos open in light box from blog page… #366882

    Hi maastrichtuniversity!

    Yes Enfold supports post types. If you select the video post format and then insert the video into your post then it will be displayed in the blog page. Go ahead and try it out and let us know if that works for you.

    Regards,
    Elliott

    in reply to: Animated numbers not animating on Internet Explorer 8 #366880

    Hi renekokabovo!

    They should be working, http://kriesi.at/themes/enfold/shortcodes/animated-number/.

    Make sure your not in compatibility view and then deactivate all plugins to see if that helps. If it does not then send us a link and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Iframe in responsive page #366877

    Hi Trender!

    Try adding this to a codeblock element on the page.

    <style type = "text/css">
    .responsive .container {
        max-width: 1000px !important
    }
    </style>

    If that’s not working then send us a link so we can get a better idea of what’s going on.

    Regards,
    Elliott

    in reply to: Reordering table rows #366873

    Hi sotechnology!

    You probably already figured it out but you need to click on the arrows for each row to move them up and down.

    Best regards,
    Elliott

    in reply to: Most pictures won't upload #366871

    Hi!

    Wordpress should be giving you a message if it failed to upload due to size. See here for how to increase the upload limit, http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/.

    Cheers!
    Elliott

    in reply to: Disable stick header #366868

    Hi!

    That’s going to be more difficult because it’s being changed with javascript. Try this out.

    function add_custom_script(){
    if(is_page(440)){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘html’).removeClass(‘html_header_sticky’);
    jQuery('#header').removeClass('av_header_shrinking');
    });
    </script>
    <style type = "text/css">
    .logo img { max-height: 180px !important; }
    #header_main .container {
        height: 180px !important;
        line-height: 180px !important;
    }
    </style>
    <?php
    }
    }
    add_action(‘wp_footer’, ‘add_custom_script’);

    Not really sure if that’s going to work for you though.

    Best regards,
    Elliott

    in reply to: Comments widget link goes nowhere #366849

    Hey 1lizcollins!

    Try adding this to the bottom of your functions.php file.

    add_filter( 'get_comment_author_link', 'enfold_customization_nocommenturl' );
    function enfold_customization_nocommenturl ( $c ) {
    	global $comment, $post;
    	return get_comment_author( get_comment_ID() );
    }

    Regards,
    Elliott

    in reply to: Google Adwords remarketing code, Add to all pages #366836

    Hey!

    Try adding it to the footer instead. Add this to the bottom of your functions.php file.

    add_action( 'wp_footer', 'enfold_customization_footerscripts' );
    function enfold_customization_footerscripts() {
    ?>
    <script type = "text/javascript">
    your code goes here
    </script>
    <?php
    }

    And then replace “your code goes here” with the code you need to use. If your code already has script tags then remove them.

    Regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Use Graphic for IconList? #366835

    Hi HiDrew!

    Try dragging a codeblock element to your page and then add this inside.

    <style type = "text/css">
    .avia-icon-list > li:nth-child(1) .iconlist-char {
        background: url("URL to your icon");
    }
    .avia-icon-list > li:nth-child(2) .iconlist-char {
        background: url("URL to your icon");
    }
    .avia-icon-list > li:nth-child(3) .iconlist-char {
        background: url("URL to your icon");
    }
    [data-av_icon]:before { opacity: 0 !important; }
    </style>

    And replace “URL to your icon” with whatever image you need to use.

    Regards,
    Elliott

    in reply to: Custom social media icon not working #366829

    Hi!

    Are you sure you have selected the correct font file in Dashboard > Enfold > Import/Export? It looks like you have a few uploaded. Also are you sure ue800 is the correct code for your icon? If you have included more than one icon in the font file then it should increment to ue801, ue802, etc etc.

    This is what I’m seeing on your site but it looks like it’s not the correct icon haha.

    It must be that your using the wrong font file or you have included other icons in the font file and need to increment the code a bit, ue803, etc etc.

    If you open up the zip file of your font and then look inside demo.html you’ll see the codes for each font at the bottom of the file.

    Cheers!
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Video Post Format SideBar under the Video #366819

    Hey toddgeist!

    Unfortunately the posts are not designed to use sections like that. What you’ll want to do instead if use a page or as an alternative you can disable the sidebar on your post and then use a 2/3 + 1/3 column layout and insert your content into the 2/3 and the widget area shortcode into the 1/3 to display some sidebar widgets.

    Best regards,
    Elliott

    in reply to: Parallax multiplier for relative speed #366812

    Hi!

    A zoomed in image appears to move quicker. It sounds like what your wanting is to use the “fixed” option instead of parallax.

    Regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Can't leave spaces in text in the content slider #366808

    Hi!

    You need to add it inside the slide instead of using the title. I did the first one for you so you can see how it’s done.

    Then add this to your custom CSS.

    .slide-entry-excerpt.entry-content > p {
        font-weight: bold;
    }

    Best regards,
    Elliott

    in reply to: Home v11 #366801

    Hey!

    I linked to the 404 in my previous post. Are you using a youtube video somewhere in the page?

    Have you tried deactivating all plugins like suggested?

    Best regards,
    Elliott

    in reply to: Photography demo – Main background color and slider image #366795

    Hey!

    Add this to your custom CSS.

    .html_stretched #wrap_all {
        background-color: red !important;
    }

    Regards,
    Elliott

    in reply to: Blog Categories #366787

    Hey!

    Are you trying to change the order they display in? This is the WordPress function we use to display them, http://codex.wordpress.org/Function_Reference/get_the_term_list, it doesn’t look like there is a sort option.

    It looks like it’s going to display them in alphabetical order.

    Cheers!
    Elliott

    in reply to: Static page display problem #366782

    Hi macinr!

    Go ahead and remove any static pages your using in Dashboard > Settings > Reading and then set your homepage and blog page in Dashboard > Enfold > Theme Options.

    If they are still not working then send us a WordPress login and take a screenshot highlighting what is going on so we can get a better idea.

    Also be sure to deactivate all plugins while testing.

    Regards,
    Elliott

    in reply to: Slider image not appearing (other dynamics not working) #366779

    Hi ArcConcepts!

    Make sure your using the latest version of Enfold, 3.0.4, and then deactivate all of your plugins.

    If that does not help then send us a WordPress login and we’ll take a look.

    Best regards,
    Elliott

    in reply to: Accordions slowing page #366777

    Hey backslash5!

    That’s quite a few accordions you have there. It’s actually crashing my copy of Chrome when I click around.

    I’m not sure what the best way to go about this would be. If it was me I would probably just create a parent page with anchors and then have it link to child pages for each letter.

    I’ll go ahead and flag this for the rest of our team to see what they think.

    Also, it looks like you have an accordion plugin loading, /wp-content/plugins/jquery-vertical-accordion-menu/skin.php?widget_id=2&skin=clean, so I would try deactivating all of your plugins to see if that helps.

    Cheers!
    Elliott

    in reply to: Masonry Gallery / Add link to download #366768

    Hi cptnem0!

    Your image is broken but it sounds like your wanting to add the download link inside the magnific popup correct? Please see here, https://kriesi.at/support/topic/social-sharing-on-galleries-enfold-v-3-0-2/, for changing out the magnific popup title to something else.

    You could probably change it to this.

    return '<a href = "'+encodeURIComponent(item.el.find("img").attr("src"))+'">Download</a>';
    

    To link directly to the image.

    Best regards,
    Elliott

    in reply to: Website responsive? #366761

    Hi!

    It looks like you’ll want to add some more entries or set your columns option to 4 instead of “automatic”.

    Best regards,
    Elliott

    in reply to: Disappearing blank lines #366743

    Hey!

    It looks like it’s because the image your using there is set to float left. What you’ll need to do is just drag another textblock element over and add the blockquote to it instead so it clears the floats. I went ahead and added it in so you can see how it’s done.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: General Video Problems #366739

    Hey!

    Sorry, not sure how I missed that.

    I just checked it again today and now the video is playing again in Firefox. Perhaps you were changing the video around when I viewed it?

    It looks the same to me in both Chrome and Firefox so take a screenshot and highlight the problem in your screenshot so we can get a better idea.

    It’s also displaying fullscreen in IE11 on Windows 8 for me.

    Best regards,
    Elliott

    • This reply was modified 11 years, 1 month ago by Elliott.
    in reply to: Mega Menu width #366712

    Hi!

    I tried to login again but it’s still not working. Go ahead and fix that and we’ll take a look.

    Regards,
    Elliott

    in reply to: unable to edit my pages. #366358

    Hi bsag1248!

    Make sure your using the latest version of Enfold, 3.0.4, and also try deactivating all of your plugins.

    If that does not help then send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Home v11 #366355

    Hi!

    The button should get a class of “avia_pop_class” when scrolling down but it does not. It sounds like the javascript is not working on your page.

    Perhaps this 404 is causing the problem.

    "NetworkError: 404 Not Found - https://www.youtube.com/get_video?noflv=1&video_id=tTjMlTWDy_0&cpn=-AgluwmnMJOz2NFz&el=embedded&referrer&eurl=http%3A%2F%2Fwww.racers-story.com%2Fsuperbike-coach%2F&fmt=22&ptk=youtube_none&splay=1"
    

    Try deactivating all of your plugins to see what happens.

    Cheers!
    Elliott

    in reply to: fonts, headers, text… #366352

    Hi woodbridgeoffice!

    You can use the special heading element to create a heading. When you edit the element switch to the colors tab to change the colors.

    And you can do the same thing for the textblock elements.

    Best regards,
    Elliott

Viewing 30 posts - 12,781 through 12,810 (of 14,834 total)