Viewing 30 results - 1,051 through 1,080 (of 1,186 total)
  • Author
    Search Results
  • #296756

    In reply to: RESPONSIVE NOT WORKING

    Hi Yigit,
    Thank you for your help on that.
    The problem is that if I reduce the pages to a tablet size for exemple, the content of the main part of the page is not resizing and I have to scroll down to see the footer of the page.
    Correct me if I’m wrong but the content of the main part of the page should be automatically reduced in size so that the footer of the page is always visible without scrolling. Is it correct ?
    When I’m on my screen, full size ( 1920×1080 ) I have everything but if I go the the tablet screen size, the content of the main part of the page, except the photos ( they resize correctly ) has always the same size and I have to scroll down.
    What surprises me is that, when I go on Enfold demo page ( http://kriesi.at/themedemo/?theme=enfold ), everything works fine
    whatever size of window I choose. Did I miss something in the setup ?

    Any idea ?

    Thank you.

    #295261

    In reply to: White space below logo

    Hey!

    Try with this code instead:

    #header_main .container, .logo, .logo a, .logo img  { width: 100%; margin: 0; }
    .logo img { padding: 0; }
    
    div#header_main { max-height: 122px; }
    .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 158px; }
    
    .header-scrolled #header_main .container, .header-scrolled .logo, .header-scrolled .logo a, .header-scrolled .logo img  { width: auto !important; margin: 0; }
    .header-scrolled .logo img { padding: 5px 0; }

    Best regards,
    Josue

    #292357
    This reply has been marked as private.
    changegroup
    Participant

    Hi Team Enfold,
    I have an issue with the Anchor Scroll on my site when viewing it on Firefox, Chrome and Explorer – not Safari.
    When I click on a menu it automatically scrolls down to the right color section as planned, however the menu highlights the wrong section.

    How can this be?

    Br

    ChangeGroup

    #281783

    Sobre lo del texto, es posible localizarlo pero es un poco mas complicado, tendrías que tocar los .mo/.po del theme, lo que estoy haciendo basicamente es poner una condición para ver que idioma esta activo y de acuerdo a eso cambiar el texto:

    	if(ICL_LANGUAGE_CODE == "es"){
    		$string = "Ver detalles";
    	}elseif(ICL_LANGUAGE_CODE == "en"){
    		$string = "View details";
    	}else{
    		$string = "";
    	}

    http://www.yachtcharterbcn.com/wp-admin/plugin-editor.php?file=functions.php&a=te&scrollto=72
    Para otros idiomas simplemente tendrías que duplicar el “elseif”.

    Lo del tamaño de fuente la verdad que no lo noto:

    Para lo del easy slider intenta agregar este código al Quick CSS:

    @media only screen and (max-width: 480px) {
        .avia-slideshow-inner, .av_slideshow_full li img{
            height: 220px !important;
            width: auto !important; 
        }
    }

    Lo de los widgets, esto te va a servir:
    http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    Saludos,
    Josue

    #277742

    Topic: ScrollTo issues on IOS

    in forum Enfold
    wrongjon
    Participant

    Hi guys
    I’ve set up a page with names anchor sections and added a left nav to link to those.
    http://ordovas.jacl.co.uk/exhibition/chillida-on-miro/

    The header and my left nav are set to be fixed position so when you scroll down you always see the header and the left nav (once you get below the slideshow)

    Works great on desktop but on IOS ipad 1 it works fine fi you scroll with finger

    BUT if you use the left nav to jump to named anchor position you cant then click the left nav again and the fixed elements do not auto resposition until you touch the screen slightly with a finger and drag

    I think this is the fix here http://stackoverflow.com/questions/7826868/fixed-position-navbar-only-clickable-once-in-mobile-safari-on-ios5

    But if I need to add in some behaviour just before and after the jquery scroll to animation where can i do this in the theme files please

    Jonathan

    #277658
    islandjoe1
    Participant

    Hi
    Thx for all the support

    How can I stop every coupon applied update showing up on woocommerce. I do not mind the cart update, but we use lots of coupons which are auto applied and they fill the screen and customers do not like scrolling through all of these

    thx
    JoeWoo Coupons Applied

    #277223

    Hello, I’ve created a shortcode, it worked perfectly, but because I am mixing css, html and php in the same function I got a big error, then I move the code to a html file and included directly into the shortcode without success, could you please help me find the better way to run this chunk of code into the homepage without sacrifying some sleep?

    code:

    <!– MOBILE NEWS –>
    <div id=”home-news-mobile” class=”row” style=”background:#c0c0c0;margin-top: 0px;margin-bottom: 20px;width: 100%;padding:0px 0px 10px 0px;font-weight:bold;”>

    <div style=”width:100%;height:57px;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/themes/enfold/images/ga-home-newstop.png) no-repeat top right;”></div>

    <ul class=”homenews scroll-pane” style=”width:90%;margin-right:20px;padding:10px;float:right;font-weight:bold”>
    <?php $posts = get_posts(‘category=2&orderby=date&numberposts=20’); foreach($posts as $post) { ?>
    <li style=”list-style:none;text-align:right;line-height:24px;font-weight:bold”>” target=”_parent” style=”font-weight:bold;border:thin;”><?php the_title(); ?>
    <?php } ?>

    </div>

    <!– MOBILE PUB –>
    <div id=”home-pub-mobile” class=”row” style=”background:#c0c0c0;margin-top: 10px;margin-bottom: 20px;width: 100%;padding:0px;font-weight:bold”>

    <div style=”width:100%;height:51px;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/themes/enfold/images/ga-home-pubtop.png) no-repeat top right;”></div>

    <ul class=”homenews scroll-pane” style=”width:90%;margin:20px;padding:10px;max-height:160px;float:right;text-align:right;font-weight:bold”>

    <?php wp_list_pages(‘depth=4&child_of=111&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=109&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=194&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=196&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=198&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=200&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=202&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=204&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=206&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=208&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=211&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=215&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=213&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=217&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=219&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=221&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=223&title_li=’); ?>
    <?php wp_list_pages(‘depth=4&child_of=225&title_li=’); ?>

    <?php
    /*
    $pages = get_pages(array(‘child_of’ => ’17’, ‘exclude’ => ‘111’, ‘parent’ => 17, ‘sort_column’ => ‘menu_order’, ‘sort_order’ => ‘ASC’));
    foreach($pages as $page){
    print ‘<li style=”text-align:right;line-height:24px;font-weight:bold”>ID).'”>’.$page->post_title.’‘;
    }
    */
    ?>

    </div>

    <!– MOBILE COMMUNITY –>
    <div id=”home-community-mobile” class=”row” style=”margin:20px auto;width: 100%;text-align:center;”>
    <?php echo qtrans_getLanguage();?>/news/guzman-ariza-and-the-community/”>wp-content/uploads/2013/12/ga_home_community_<?php echo qtrans_getLanguage();?>.png” style=”width:260px” border=”0″ />
    </div>

    <div id=”home-news-desktop” class=”row” style=”margin-top: 10px;margin-bottom: 20px;width:100%;max-width:959px;height:292px;float: left;”>

    <div class=”col-box span-7″ style=”width: 682px;height:290px;float:left;margin: 3px 15px 3px 0px;text-align:center;background:url(<?php echo home_url( ‘/’ ); ?>wp-content/uploads/2013/12/ga_home_newsh_<?php echo qtrans_getLanguage();?>.jpg);”>

    <div class”holder” style=”position:absolute;top:6px;left:4px;width:460px;height:200px;border:0px solid red”>

    <div id=”homepane2″ class=”scroll-pane” style=”height:275px;”>

    <ul class=”homenews” style=”margin-right:20px;text-align:right;font-weight:bold”>
    <?php
    $pages = get_pages(array(‘child_of’ => ’17’, ‘exclude’ => ‘111’, ‘parent’ => 17, ‘sort_column’ => ‘menu_order’, ‘sort_order’ => ‘ASC’));
    foreach($pages as $page) {
    print ‘<li style=”text-align:right;line-height:24px;font-weight:bold”>ID).'”>’.$page->post_title.’‘;
    }
    ?>

    </div>

    </div>

    </div>

    <div class=”col-box span-3″ style=”float:left;margin: 3px 0px;text-align:center;”>

    wp-content/uploads/2013/12/ga_home_community_<?php echo qtrans_getLanguage();?>.png” style=”width:260px” border=”0″ />
    </div>

    </div>

    Thank you for your time and patience.

    #275056
    Juan-Jose
    Participant

    Hi

    On this page

    http://www.tavad.com/resultados-tratamientos-drogas/#tab-id-2

    When loaded displays a horizontal scroll at the bottom is not necessary when you operate on the images disappear.

    It could directly load the page without scrolling ?

    #275032
    lovetyh
    Participant

    Hi,

    I am embedding an iframe on my website, but the iframe does not dynamically resize when viewed on mobile displays. Have tried the method of changing the width parameter in the iframe to 100% but it still doesn’t work.

    Is there some code in the theme that is preventing the responsive change? Anyone able to help?

    <div style=”width:100%; text-align:left;” ><iframe src=”www.example.com” frameborder=”0″ height=”1000″ width=”100%” vspace=”0″ hspace=”0″ marginheight=”5″ marginwidth=”5″ scrolling=”auto” allowtransparency=”true”></iframe>
    <div style=”font-family:Helvetica, Arial; font-size:10px; padding:5px 0 5px; margin:2px; width:100%; text-align:left;” >Sell Tickets <span style=”color:#ddd;”>through</span> Eventbrite</div>
    </div>

    Thanks! With that command we are now able to stop the video when the user scrolls down the page. The only little issue now is that when we scroll back up, the video doesn’t restart automatically. The user needs to click twice on it to restart it.
    Is there a command we could use to just “pause” the video, and one to “resume” it? Do we need to import the Vimeo APIs for that? Or is there an easier way?
    Many thanks.

    #273890
    Kevin
    Participant

    Hello Support,

    http://shelliv.bydecosta.com/blog/

    On the blog page because there is a sidebar I copied the Form Code using FireFox Firebug and pasted the form content on the Footer “Footer – Column1″.

    Is there an easier way to copy like a shortcode that are used in pages over to the widget like what is done on the page using the Avia Layout Builder.

    Color Section
    (2/5) column which is the text
    <h3><span style=”color: #ffffff;”>Subscribe</span></h3>
    <span style=”color: #ffffff;”>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore</span>

    (3/5) column which is the Gravity Forms Shortcode
    [gravityform id=”1″ name=”Offer Free Value Signup” title=”false” description=”false” ajax=”true”]

    The code that I copied to the footer which I know is not the right way to do is:
    <div class=”entry-content-wrapper clearfix”>
    <div class=”flex_column av_two_fifth first avia-builder-el-3 el_before_av_three_fifth avia-builder-el-first “>
    <section itemtype=”http://schema.org/CreativeWork&#8221; itemscope=”itemscope” class=”av_textblock_section”><div itemprop=”text” class=”avia_textblock “><h3><span style=”color: #ffffff;”>30 DAY CHALLENGE</span></h3>
    <p><span style=”color: #ffffff;”>Step outside your comfortzone today. </br>Sign up to receive my challenge kit.</span></p>
    </div></section>
    </div><div class=”flex_column av_three_fifth avia-builder-el-5 el_after_av_two_fifth avia-builder-el-last “>
    <p></p><section itemtype=”http://schema.org/CreativeWork&#8221; itemscope=”itemscope” class=”av_textblock_section”><div itemprop=”text” class=”avia_textblock “>
    <div id=”gform_wrapper_1″ class=”gf_browser_gecko gform_wrapper”><form action=”/blog/#gf_1″ id=”gform_1″ target=”gform_ajax_frame_1″ enctype=”multipart/form-data” method=”post”>
    <div class=”gform_body”>
    <ul class=”gform_fields top_label description_below” id=”gform_fields_1″><li class=”gfield gf_left_half gfield_contains_required” id=”field_1_1″><label for=”input_1_1″ class=”gfield_label”>Name<span class=”gfield_required”>*</span></label><div class=”ginput_container”><input type=”text” tabindex=”1″ class=”large” value=”” id=”input_1_1″ name=”input_1″></div><li class=”gfield gf_right_half gfield_contains_required” id=”field_1_2″><label for=”input_1_2″ class=”gfield_label”>Email<span class=”gfield_required”>*</span></label><div class=”ginput_container”><input type=”email” tabindex=”2″ class=”large” value=”” id=”input_1_2″ name=”input_2″></div><li class=”gfield gform_validation_container” id=”field_1_3″><label for=”input_1_3″ class=”gfield_label”>Name</label><div class=”ginput_container”><input type=”text” autocomplete=”off” value=”” id=”input_1_3″ name=”input_3″></div><div class=”gfield_description”>This field is for validation purposes and should be left unchanged.</div>
    </div>
    <div class=”gform_footer top_label”> <input type=”submit” onclick=”if(window["gf_submitting_1"]){return false;} if( !jQuery("#gform_1")[0].checkValidity || jQuery("#gform_1")[0].checkValidity()){window["gf_submitting_1"]=true;} ” tabindex=”3″ value=”Sign Up” class=”button gform_button” id=”gform_submit_button_1″><input type=”hidden” value=”form_id=1&title=&description=&tabindex=1″ name=”gform_ajax”>
    <input type=”hidden” value=”1″ name=”is_submit_1″ class=”gform_hidden”>
    <input type=”hidden” value=”1″ name=”gform_submit” class=”gform_hidden”>
    <input type=”hidden” value=”” name=”gform_unique_id” class=”gform_hidden”>
    <input type=”hidden” value=”WyJbXSIsImY5ODIwYzViMWVmMWJmMjAxNDM0MzMwYTA3Yzc1OGMyIl0=” name=”state_1″ class=”gform_hidden”>
    <input type=”hidden” value=”0″ id=”gform_target_page_number_1″ name=”gform_target_page_number_1″ class=”gform_hidden”>
    <input type=”hidden” value=”1″ id=”gform_source_page_number_1″ name=”gform_source_page_number_1″ class=”gform_hidden”>
    <input type=”hidden” value=”” name=”gform_field_values”>

    </div>
    </form>
    </div>
    <iframe id=”gform_ajax_frame_1″ name=”gform_ajax_frame_1″ src=”about:blank” style=”display:none;width:0px;height:0px;”></iframe>
    <script type=”text/javascript”>jQuery(document).ready(function($){gformInitSpinner( 1, ‘http://shelli.bydecosta.com/wp-content/plugins/gravityforms/images/spinner.gif&#8217; );jQuery(‘#gform_ajax_frame_1’).load( function(){var contents = jQuery(this).contents().find(‘*’).html();var is_postback = contents.indexOf(‘GF_AJAX_POSTBACK’) >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find(‘#gform_wrapper_1’);var is_redirect = contents.indexOf(‘gformRedirect(){‘) >= 0;var is_form = !(form_content.length <= 0 || is_redirect);if(is_form){jQuery(‘#gform_wrapper_1’).html(form_content.html());jQuery(document).scrollTop(jQuery(‘#gform_wrapper_1’).offset().top);if(window[‘gformInitDatepicker’]) {gformInitDatepicker();}if(window[‘gformInitPriceFields’]) {gformInitPriceFields();}var current_page = jQuery(‘#gform_source_page_number_1’).val();gformInitSpinner( 1, ‘http://shelli.bydecosta.com/wp-content/plugins/gravityforms/images/spinner.gif&#8217; );jQuery(document).trigger(‘gform_page_loaded’, [1, current_page]);window[‘gf_submitting_1’] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find(‘#gforms_confirmation_message’).html();if(!confirmation_content){confirmation_content = contents;}setTimeout(function(){jQuery(‘#gform_wrapper_1’).replaceWith(‘<‘ + ‘div id=\’gforms_confirmation_message\’ class=\’gform_confirmation_message_1\” + ‘>’ + confirmation_content + ‘<‘ + ‘/div’ + ‘>’);jQuery(document).scrollTop(jQuery(‘#gforms_confirmation_message’).offset().top);jQuery(document).trigger(‘gform_confirmation_loaded’, [1]);window[‘gf_submitting_1’] = false;}, 50);}else{jQuery(‘#gform_1’).append(contents);if(window[‘gformRedirect’]) {gformRedirect();}}jQuery(document).trigger(‘gform_post_render’, [1, current_page]);} );} );</script><script type=”text/javascript”> jQuery(document).ready(function(){jQuery(document).trigger(‘gform_post_render’, [1, 1]) } ); </script>
    </div></section>
    </div>
    </div>

    Thanks,
    MP

    loyalzoo
    Participant

    Hi,

    I have a full screen slider with an autoplay vimeo video, and all is fine.
    However I would like the video to stop when the user scrolls away from it. Is there some way of achieving it?
    We could write some JS code for it, but we are not sure what command to use to play/stop the video.
    Can you help?
    Cheers.

    #272379

    In reply to: avia.js modification

    Your modification didn’t fix the issue. I contacted the plugin developer and here’s what he said (it is beyond my understanding but maybe it will make sense to you).

    “If Enfold applied our original fix verbatim, the issue would be resolved. It doesn’t sound like they fully understand the issue.

    FacetWP uses “#!” as a hash instead of just “#” because it allows Google to automatically handle ajax. See: http://take.ms/zqPRi

    Enfold intercepts all URL hashes beginning with “#” for use with their built-in “scroll-to-top” functionality. This is breaking FacetWP’s ajax-permalink functionality.

    Reference: https://support.google.com/webmasters/answer/174992?hl=en&#8221;

    Asad

    #260630

    Hey Erdrol!

    1) Afaik Kriesi updated the framework folder (especially wp-content/themes/enfold/framework/php/avia_shortcodes/) and the config-templatebuilder folder to maintain the WP3.9 compatibility.

    2) If you update the config-templatebuilder folder the new shortcodes will be registered automatically and you can use them. A complete change log of all changed files can be found here (scroll to the bottom): http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Zweistein

    Regards,
    Peter

    #260399
    D5WDesignGroup
    Participant

    I have used the following code as found in the forum to turn the menu items into buttons:

    #top .main_menu .menu > li > a{
    padding:10px !important;
    background: green;
    height: auto !important;
    line-height: 16px !important;
    border-radius: 5px;
    margin: 0 13px;
    }

    #top .main_menu .menu {
    margin-top: 25px
    }
    #top .header-scrolled .main_menu .menu {
    margin-top: 3px
    }

    This works well for creating the button effect however these are the issues I would still like to fix:
    1. The page that I am currently on has the colored underline right underneath it. I would like to be able to remove the underline completely.
    2. Can I make it so that the button background of the page that I’m on is a different color from the other buttons?
    3. Can I also assign a different background color for the hover state of the buttons?

    #260287

    So, jetzt hat es doch geklappt ^^

    Gibt es denn eine Möglichkeit, dass die Änderungen an der Javascript Datei (https://kriesi.at/support/topic/kein-nahtloser-ubergang-beim-scrollen-in-verbindung-mit-ubermenu/) beibehalten werden, oder muss ich die jedes mal neu einfügen?

    Vielen Dank für eure Hilfe!

    #259533

    Hi

    Thanks for the super fast reply. i have put the ccs recommendation in and it works. i have this in my custom css file do i need to delete it as i put it in ther to adjust the icons and menu buttom to drop below the logo as they appeared over the logo.

    @media only screen and (max-width: 640px)
    {
    .responsive .logo a, .responsive .logo img { width:100%; height: auto !important; float:left; margin:0; padding:0; top:0; }
    #advanced_menu_toggle { top: 52px; }
    .responsive #header .social_bookmarks { top: 55%; margin:0; padding:0; left: -15%; }
    }

    thanks again for you help

    #257706

    Topic: Extra scrollbar error

    in forum Enfold
    fisherman
    Participant

    Hi Guys,
    I just updated the theme with the auto-updater, and an extra scrollbar has been added to my homepage in all browsers:
    http://www.kaszinoprofi.hu/

    This thread did not solve it for me, please tell me how I can remove it.

    Thanks,
    Tom

    #257660
    nementio
    Participant

    Hi,

    I have an issue in my homepage. I have a fullwitdth masonry gallery at the middle of the page. When I load the page and scroll down to the gallery, it takes sometimes seconds to start loading images (only have 6).
    I there any way to make the gallery auto load completely on page load and not wait for scroll to be done.

    http://nementio.hl206.dinaserver.com (will be http://www.nementio.com shortly)

    Thanks.

    #256965

    Hey!

    Please make sure that the “Disable autoplay” option is not activated. Go to the video slide and scroll to the “Disable autoplay” checkbox. Make sure it’s not checked, then re-save the slideshow and save the page. It seems like the option is activated at the moment.

    Cheers!
    Peter

    #256679
    akaracing
    Participant

    Hi

    I just updated to 3.9 Enfold and have seen some strange things, my social media icons have lost there color, but on hover you see the color, i had it alternating from color background with white icon then on hover black with colored icon, this happens on laptop and pc’s

    On iphone’s, ipad’s and andriod devices it’s differant, the social media icons are the correct color but also show the alt tag, same with the scroll up arrow.

    this only happened when i upgraded. i do have custom css on the icons please see below

    /* Have fun adding your style here :) – PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

    /* General Custom CSS */

    /*SOCIAL MEDIA ICONS SECTION */

    #top .social_bookmarks_twitter:hover a
    { color: #4099ff; background-color: transparent; text-decoration: none; }
    #top .social_bookmarks_twitter a { color: #fff; background-color: #4099ff; text-decoration: none; }

    #top .social_bookmarks_facebook:hover a
    { color: #3B5998; background-color: transparent; text-decoration: none; }
    #top .social_bookmarks_facebook a { color: #fff; background-color: #3B5998; text-decoration: none; }

    #top .social_bookmarks_youtube:hover a
    {color: #c4302b; background-color: transparent; text-decoration: none; }
    #top .social_bookmarks_youtube a { color: #fff; background-color: #c4302b; text-decoration: none; }

    #top .social_bookmarks_mail:hover a
    { color: #ffcc00; background-color: transparent; text-decoration: none; }
    #top .social_bookmarks_mail a { color: #fff; background-color: #ffcc00; text-decoration: none; }

    #top .social_bookmarks_pinterest:hover a
    { color: #C92228; background-color: transparent; text-decoration: none; }
    #top .social_bookmarks_pinterest a { color: #fff; background-color: #C92228; text-decoration: none; }

    .social_bookmarks li { margin-right: 5px; }
    /* Social Icon spacing */

    /* SCREEN RESPONSIVE SECTION */

    @media only screen and (max-width: 640px)
    {
    .responsive .logo a, .responsive .logo img
    { width:100%; height: auto !important; float:left; margin:0; padding:0; top:0; }
    #advanced_menu_toggle { top: 52px; }
    .responsive #header .social_bookmarks { top: 55%; margin:0; padding:0; left: -15%; }
    }

    /* LAYOUTS & CONTAINERS SECTION */

    .avia-team-member { margin:5px; }

    .content, .sidebar { padding-top: 5px; padding-bottom: 0px; }
    /* this is the spacing on the main page */

    .inner_sidebar { margin-left: 10px; margin-right: 0px; padding:0px; }

    .togglecontainer { margin: 0px 0px; padding: 0px; }
    /* this is the Accordion box on the page */

    .js_active .toggle_content { padding: 3px; margin: 0px; border-color: #d20000; } /* corsa rossa */
    /* this is for the Accordion content details */

    .js_active .toggler { border-color: #d20000; } /* corsa rossa */
    /* this is the Accordion title border area */

    .tabcontainer { margin:0px 0px; }
    /* this is for the content of the Tab box */

    .js_active .tab_content { padding: 5px; margin: 0px; }
    /* this is the content of the Tab box expanded */

    .js_active .top_tab .tab { border-color: #d20000; } /* corsa rossa */
    .js_active .active_tab_content { border-color: #d20000; } /* corsa rossa */
    /* this is for the Tab titles and expanded tabs borders */

    .av-special-heading { margin-top: 0px; }
    /* this is for the Special Heading text */

    .special-heading-inner-border { border-top-width: 2px; border-top-style: none; }
    /* this is for the Special Heading line style */

    .hr { border: solid #ddd; border-width: 2px 0px 0px 0px; clear: both; margin: 5px 0px 5px 0px; height: 0px; }
    .hr span { border-color: #00ffaa; }
    /* this is for the Horizontal Rule */

    .avia_textblock { padding: 5px 0px 0px 0px; margin: 0px; }

    table { margin: 0px; }
    th { padding: 0px; margin: 0px; border: none; }
    td { padding: 0px; margin: 0px; border: none; }
    tr th:first-child, tr td:first-child { border-left-style: none; margin: 0px; }
    tr:first-child th, tr:first-child td { border-top-style: none; margin: 0px; }

    .single-post .post-entry .big-preview { display:none !important }
    /* This stops the preview image being displayed in the post */

    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

    @media only screen and (min-width: 768px) {
    /* Add your Desktop Styles here */

    }

    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

    @media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */

    }

    Hey LukasE!

    As much as i would like to help you on this one, unfortunately the Translation Isn’t helping me here could you post it in English ;)

    Don’t forget the link to your site

    Best regards,
    David

    #253679
    eberswine
    Participant

    Very strange.

    I visit the site and start to scroll down. Half way down the page, it will JUMP back to the top of the page automatically.

    This does this everytime I reload or visit the site for the first time.

    ?? very strange scroll bug ?

    Firefox 17 version

    #252805

    there you can also see the bug – scroll down to “latest news” on mobile and watch how the slider works

    http://kriesi.at/themes/enfold/homepage/home-v3-3-column-with-blog/

    on the older enfold theme version, it was automatically changed to 1 item to slide one by one… now it shows 3 each under each one and its absolutely confusing …

    #249054

    In reply to: Mobile Blog Layout

    Hey David!

    Try with this code:

    @media only screen and (max-width: 767px){
    .blog-meta{
    display: block !important;
    }
    .responsive .mobile_slide_out .logo img {
    width: 80%;
    height: auto !important;
    padding-top: 15px;
    }
    }
    @media only screen and (min-width: 767px) {
    .single-post .big-preview.single-big { display: none; }
    div .logo {
    top: 20px !important;
    }
    .header-scrolled .logo {
    top: 0px !important;
    }
    #menu-item-search {
    display: block!important;
    }}

    Best regards,
    Josue

    #248376
    This reply has been marked as private.
    #247831

    In reply to: Mobile Blog Layout

    Hey!

    There is a closing curly bracket missing. Please try adding following code to bottom of Style.css file of your child theme in Appearance > Editor

    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    width: 80%;
    height: auto !important;
    padding-top: 15px;
    }
    }
    @media only screen and (min-width: 767px) {
    .single-post .big-preview.single-big { display: none; }
    div .logo {
    top: 20px !important;
    }
    .header-scrolled .logo {
    top: 0px !important;
    }
    #menu-item-search {
    display: block!important;
    }}

    Regards,
    Yigit

    #247634

    In reply to: Mobile Blog Layout

    Its not working. I’m guessing I entered incorrectly.
    Here is all the code in Quick CSS
    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    width: 80%;
    height: auto !important;
    padding-top: 15px;
    }
    }
    @media only screen and (min-width: 767px) {
    .single-post .big-preview.single-big { display: none; }
    div .logo {
    top: 20px !important;
    }
    .header-scrolled .logo {
    top: 0px !important;
    }
    #menu-item-search {
    display: block!important;
    }

    #247315

    In reply to: Mobile Blog Layout

    Hi Yigit.
    All our posts do have a featured image set. Please note…we have disable the featured image within the top of each post on the desktop view. I’m guessing that also disables it in mobile view.
    Is there a way to keep it disabled is desktop view and enabled in mobile view?
    Below is the code you sent from our Quick CSS:

    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    width: 80%;
    height: auto !important;
    padding-top: 15px;
    }
    }.single-post .big-preview.single-big { display: none; }
    div .logo {
    top: 20px !important;
    }
    .header-scrolled .logo {
    top: 0px !important;
    }

Viewing 30 results - 1,051 through 1,080 (of 1,186 total)