Viewing 30 results - 134,701 through 134,730 (of 142,788 total)
  • Author
    Search Results
  • #214416

    Hi!

    Can you try adding !important rule to force it as following?

    #top #payment label { font-size: 15px!important; }

    Regards,
    Yigit

    #214398

    That displays on the desktop version as well. I want to _only_ have the graphic show up on the mobile version…

    Thanks Devin,

    i found this option, but it has no effect so far.

    I did select “Define custom link” and put the Link to the portfolio entry.. No effect so far.
    I Use “slideshow” to display an image there (only one would be enough)

    http://www.virtuelle-touren.de/portfolio/

    Is there a way to set it generaly to usw the portfolioentrylink from the headline for the image shown in ajax?

    Best wishes
    Arne

    #214381
    Arne
    Participant

    Hey there,

    i would love to be able to set the Link of buttons or slides to display in an iframe/lightbox.

    See my link: http://www.virtuelle-touren.de/portfolio-eintrag/lippeschutz-bevoelkerungsschutz-kreis-lippe/
    I would love to make the tour (linked in the Slider) open in an iframe such as the Link “PC/Desktop: Tour öffnen” wich is on the same page a little way down.

    How can i do that?

    • This topic was modified 12 years, 1 month ago by Arne.
    #214347
    moggiex
    Participant

    Howdy,

    Looking at the demo site here on these pages:

    http://kriesi.at/themes/enfold/shop/
    http://kriesi.at/themes/enfold/product/zoku-trioquick-pop-maker/

    There are some differences to what happens in reality with the enfold theme and a vanilla installation of Woocommerce.

    For example the product list page shown here http://kriesi.at/themes/enfold/shop/ has a custom side bar, without the common sidebar being added and a dedicated sidebar which isn’t elsewhere on the demo.

    How was this achieved?

    Also in reality, the sidebar appears under the product details (see CSS hiding suggestion here) not to the right hand side and is exactly what happened on our site too.

    What did you do to make these pages look how they do?

    Matt

    #214346

    In reply to: Post grid

    Hmmm, if I reduce the browser window,
    margin-top of one_third grid does not work….

    #214340

    In reply to: Post grid

    Perfect!!
    Thank you!

    This is my custom css, including a margin-top control:

    div .av_one_third {
    margin-top: 2%;
    margin-left: 2%;
    width: 32%;
    }

    I have a last thing to adjust, that is the margin-top of a slideshow:
    it is on one column, above of slideshow (710px) I have an image (710px, that is one column bar).

    I found a couple of css to do it, but these css increase also the distance from the top of the content area…
    Have you a suggestion?

    #214339

    Ok thanks this solve the prob of the title Link (Post Link: https://kriesi.at/support/topic/blog-post-title-removed-when-link/#post-214324)

    But the other links inside the post M-Pass-02 format “link” didn’t work :

    lieu de résidence links to http://epsu-cj.eu/ in place of http://epsu-cj.lu/pdf/M-passFR.pdf
    – the pdf icon didn’t link anymore…

    Thanks fo your patience ;)….

    #214333
    Pixelbits
    Participant

    I was looking for a different onhover effect for the Enfold portfolio. With the help of some Googling I changed the arrow to a slideover-excerpt-text effect.

    To change this you have to know how to code – preferably in a child theme that you can download here:http://bit.ly/enfold-child

    Example of onhover effect:
    http://i40.tinypic.com/ndvqpz.jpgimage effect example

    What did i change:
    PORTFOLIO.PHP (Version: 2.4.5)

    New code:
    somewhere from line 395 (fullwidth portfolio) I changed some settings and added some classes. This is not very clean code but it can help you achieve this very easily.

    else
                    {
                        $extraClass .= ' default_av_fullwidth ';
    
                        $output .= "<div data-ajax-id='{$the_id}' class=' rozepitem grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>";
    	                $output .= !empty($excerpt) ? "<a href='{$title_link}' title='".esc_attr(strip_tags($title))."'><div class='rozeptxt grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false)).">".$excerpt."</div></a>" : '';
        
                        $output .= "<article class='main_color inner-entry' ".avia_markup_helper(array('context' => 'entry','echo'=>false)).">";
    					
                        $output .= apply_filters('avf_portfolio_extra', "", $entry);
                        $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size )."</".$link_markup[1].">";
                        $output .= !empty($title) || !empty($excerpt) ? "<div style='z-index:100;box-shadow: 0px -5px 20px #888888;' class='grid-content'><div class='avia-arrow'></div>" : '';
    
                        if(!empty($title))
                        {
                            $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false));
                            $output .= '<header style="z-index:100;" class="entry-content-header">';
                            $output .= "<h3 class='grid-entry-title entry-title' $markup><a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>";
                            $output .= '</header>';
                        }
                        $output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
                        $output .= '<footer class="entry-footer"></footer>';
                        $output .= "</article>";
                        $output .= "</div>";
                    }
    
    				$loop_counter ++;
    				$post_loop_count ++;
    				$extraClass = "";
    
    				if($loop_counter > $columns)
    				{
    					$loop_counter = 1;
    					$extraClass = 'first';
    				}
    			}

    Then i added a jQuery part in a JS file (e.g. shortcodes.js):

    $('.rozeptxt').animate({
          opacity:'0',
          top:'300px',
        });
    
    $('.rozepitem').hover(  
      // Over
      function(){     
    	$(this).find('.rozeptxt').animate({
          opacity:'0.9',
          top:'0px',
        });
    
      }
      ,  
      // Out
      function(){
    	$(this).find('.rozeptxt').animate({
          opacity:'0',
          top:'300px',
        });
    
      }
    );
    

    In the custom CSS-field I added this:

    
    .image-overlay { display: none!important; } 
    
    .entry-title {font-weight:bold;font-size:13pt;}
    
    .rozeptxt{color:#7c6853;font-size:13pt;position: absolute;top:0px;left:0px;
        background: rgba(255,255,255,0.9);width: 100%;height: 100%;z-index:50;padding:20px;}
    
    .rozepitem{display: block;float: left;
        position: relative;overflow:hidden;}
    

    I know the code can be a lot cleaner, but i saw other people wanting this – so maybe this helps them create something awesome.

    • This topic was modified 12 years, 1 month ago by Pixelbits. Reason: example image effect added
    #214325

    Hey!

    For a temporary fix you can try to insert this code at the very bottom of enfold/js/avia.js:

    
    (function($){
        $(document).ready(function()
        {
            setTimeout(function(){jQuery('body').AviaCcrollCorrection({duration: 1000});}, 1500);
        });
    })( jQuery );
    
    // -------------------------------------------------------------------------------------------
    // Scroll correction which removes the height of the menu if necessary
    // -------------------------------------------------------------------------------------------
    
    (function($)
    {
        $.fn.AviaCcrollCorrection = function(options)
        {
            var defaults =
            {
                duration: 500,
                easing: 'easeInOutQuint'
            };
    
            var options = $.extend(defaults, options);
    
            var fixedMainPadding  = parseInt($('.fixed_header #main').css('padding-top'),10) / 2 || 0;
            fixedMainPadding += parseInt($('html').css('margin-top'),10);
            var hash = window.location.hash;
    
            if(hash != '' && hash != '#' && hash != '#prev' && hash != '#next')
            {
                var container = $(hash);
    
                if(container.length)
                {
                    if(container.offset().top > fixedMainPadding)
                    {
                        var target = container.offset().top - fixedMainPadding;
                        $('html:not(:animated),body:not(:animated)').animate({ scrollTop: target }, options.duration, options.easing);
                    }
                }
            }
        };
    })(jQuery);
    

    Cheers!
    Peter

    #214324
    This reply has been marked as private.
    #214313
    Bogdan
    Participant

    I got bug with permalinks for Portfolio. Categories mixed in in the wrong order in the top breadcrumb.
    For exsample, I got something like this: Cats / Red Dogs / Big white cats insted
    Cats / Big cats / Big white cats. All portfolio items included in the desired categories,
    menu page order is also correct. It’s only bug with breadcrums.

    anton123
    Participant

    Hi There – I want to know if this is possible to achieve and how to do it:

    I want the header with menu displayed below the fullscreen layerslider, with the logo centered and overlapping the layerslider (transparent .PNG logo). Here is a screenshot of the example: http://pbrd.co/1mOw5WX

    Alternatively, the header on top but also centered and overlapping the layerslider (transparent .PNG logo). Here is a screenshot of the example: http://pbrd.co/1mOwfO1

    In both options the menu is centered around the logo

    Questions:
    – Is this possible?
    – Code needed to change it
    – How would this affect display across browsers, tablets and phones? (if possible can the responsive version remain the same as it would show for the standard headers / logo layout)

    Thanks very much for the help!

    #214303

    In reply to: megamneu column width

    I’ve been looking for the files and css of mega-menu. It’s quite well hidden
    It’s just getting a bit long. i wanted to change the padding at top and bottom , or someting like that.

    #214285

    In reply to: layerslider responsive

    Hi stevemulisa!

    I’ll flag the topic for Kriesi to take a look at.

    Regards,
    Devin

    #214231

    Hi!

    Please add following code to Quick CSS instead

    #top #payment label { font-size: 15px; }

    Best regards,
    Yigit

    #214230

    In reply to: Search on top menu

    Hey!

    You are probably using the older version of the theme. Please update your theme to the latest version 2.4.5 and it should appear
    http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Cheers!
    Yigit

    #214229
    Lynnr321
    Participant

    I have been experiencing fatal errors and could not use the admin side of WordPress earlier today. I think I have them fixed now, but I’m not sure. I am sending this along to you as I am seeing others like this and hope it may help in troubleshooting it for everyone.

    Earlier today:
    When logging into Pages, they responded very randomly. For instance, the Home page does not display or sometimes gives a fatal error and the Rates page comes up with only the default editor and otherwise a blank white screen. Oddly, the user side looks and operates fine. Below are some threads I’ve posted on for this problem and some things I’ve done from your advise that, so far, have not worked.

    I love this theme -it is one of the nicest themes I’ve ever developed with, BUT I need to get it to launch successfully and be stable.

    My site is at: http://bit.ly/1ff9EVF

    Thanks -Lynn

    Link: https://kriesi.at/support/topic/fatal-error-caused-bij-enfold/

    January 23, 2014 at 6:17 pm

    I am receiving similiar php warnings and my host said to contact the Theme developers. My site is at: http://bit.ly/1ff9EVF
    Should I open a new thread or can you help on this one?
The error I am receiving is:
Fatal error: Cannot use object of type WP_Error as array in /home/sterling/public_html/new-wordpress/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 344
    I have also been receiving php memory limit errors, but I increased the allotment and that seemed to resolve that.
    Thanks -Lynn

    January 23, 2014 at 8:04 pm

    For now, I have resolved this by deactivating the Jetpack plugin.
    It caused this error when loading, but then loaded the plugin:
Fatal error: Out of memory (allocated 67633152) (tried to allocate 122880 bytes) in /home/sterling/public_html/new-wordpress/wp-admin/includes/class-wp-plugin-install-list-table.php on line 269
    Then it gave this error when I clicked on Sites Stats (twice):
We were unable to get your stats just now. Please reload this page to try again. If this error persists, please contact support. In your report please include the information below.
    User Agent: “Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.73.11 (KHTML, like Gecko) Version/6.1.1 Safari/537.73.11″
Page URL: “http://sterlingridgeresort.com/new-wordpress/wp-admin/admin.php?page=stats&noheader”
API URL: “http://dashboard.wordpress.com/wp-admin/index.php?noheader=true&proxy&page=stats&blog=58935943&charset=UTF-8&color=coffee&j=1:2.7″
http_request_failed: “Couldn’t resolve host ‘dashboard.wordpress.com’”
    I disabled Jetpack and some of the errors went away (I thought it was fixed), but when I went into several pages, then I received the random errors described above.

    Then I did the suggestions at the end for the php.ini file:
    link: https://kriesi.at/support/topic/java-script-error/
    January 16, 2014 at 9:52 am

    Hey!
    This is not an incompatibilty issue but a problem of the envato theme update api. You can try two things:
    1) Update the api file to the latest version – the code can be found here: https://github.com/envato/envato-wordpress-toolkit/blob/master/includes/class-envato-api.php – just delete the code in wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php and insert the updated code. I’m not sure if it will work though (I can’t test it).
    2) Deactivate the update api – insert following code into the child or parent theme functions.php file – i.e. insert it at the very bottom of the file
    add_theme_support(‘avia_manual_updates_only’);
    Cheers!
Peter

    It still was not fixed.
    Then I increased the PHP Configuration to 200M. Still not fixed.
    Then I turned off the NextGEN Gallery by Photocrati & NextGEN Gallery Media Library Addon Plugins.
    And that! seems to have fixed it.
    Cross your fingers -hope this helps you in troubleshooting. It seems like I do not have an immediate problem, but it still doesn’t seem quite ‘right’. When changing text in the avia theme editor, sometimes I am getting the ‘Visual’ display and sometimes I need to go to the “Text” tab to edit the Text Block.

    I am using Liquid Web as the host.

    #214225

    hi Devin.

    1. -The first piece of code did the job :-)
    -Second piece, I cant see any effect ? -But nevermind i’m happy as it is !

    2. -i’m fine now that it’s gone !

    3+4. – i might post the scrollfunction in the theme feature request topic…

    5. I managed to partially solve the question myself, by simply changing the images in every one of the 8 pages :-) -Now i just miss the hoovereffect, but thats OK. (try clicking this button on my front page: click this one on my page

    6. OK :-)

    Thank you for your great support.

    #214222

    In reply to: Search on top menu

    Also on this post: https://kriesi.at/support/topic/remove-search-from-nav-and-adding-a-button/#post-213851
    It’s mentioned to go to ” Enfold theme options > Header and simply uncheck “Append search icon to main menu”. ” I don’t see such an option?

    #214209

    Hi!

    Please add following code to Quick CSS as well

    #top .portfolio-preview-image .avia-gallery-thumb img { height: 80px;
    width: 80px;
    }

    Best regards,
    Yigit

    #214202

    In reply to: Android Issues

    Hey!

    I tested your website on an Android device (4.3) with no issues so far. I’ll tag Devin to this topic, i know he can test your website on a 2.3.6 device.

    Cheers!
    Josue

    #214201

    Hey MikeK!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top div .avia-gallery img { padding: 0; }
    #ihf_map_widget { margin-top: -20px; }

    Regards,
    Yigit

    #214190

    In reply to: Search on top menu

    Hi Yigit,
    Thanks. That didn’t work for me as my search page just disappeared after inserting the code. The plugin is now deactivated.

    eternalko
    Participant

    Hi,

    This is a question to somebody, who has obtained wisdom and mastered the sorcery of Enfold and Avia Building Framework.

    The Story

    We needed a nice and flexible template for a content oriented website that described our products in photos, videos and texts. Lots of landing pages. Enfold seemed like a perfect candidate. And I loved it.

    However, right now, we understand that we may require some changes in the way the website looks.
    For example, we need a 3 level menu system. Enfold sorts that out via an AWESOME mega menu, but we cannot do it that way.
    You get an idea what we need from this picture.

    The structure is similar to a famous fruit company website.
    And we really like the way how Avia Layout Builder works, because we will have a lot of content to put online and ALB is a perfect tool.
    The problem is, that Enfold doesn’t look the way we want.
    So the change is coming Mr. Wayne.

    The Dilemma

    Basically, we want to prepare a set of building blocks and then build our website like one does using Avia Layout Builder.
    And we are not sure what path we should choose.
    1. Adapt Enfold. Try to decompose Avia Layout Builder and Enfold and adapt to our needs.
    2. Find something alike. Find a WP component or anything that would allow us to do similar to ALB and make our own template.
    3. Forget about it and just make our own template without awesome page builder.

    What would you do, a wise sorcerer?

    • This topic was modified 12 years, 1 month ago by eternalko.
    #214172

    In reply to: Post grid

    Hey studiotopo!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    div .av_one_third {
    margin-left: 1%;
    width: 32.333333%;
    }

    Regards,
    Yigit

    #214170

    Hey smorrone!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    #top .sub_menu>ul {
    float: right; }
    #top .social_bookmarks { margin-right: 7%; }

    Regards,
    Yigit

    #214169

    Hey!

    Try adding this code to the Quick CSS:

    label[for='hybridCommentOptin'] {
        position: static !important;
    }

    Cheers! 
    Josue

    #214137

    Hey!

    You are welcome, glad we could help :)

    Cheers!
    Yigit

    #214134

    Perfect! thanks again.

Viewing 30 results - 134,701 through 134,730 (of 142,788 total)