Forum Replies Created

Viewing 30 posts - 16,711 through 16,740 (of 17,336 total)
  • Author
    Posts
  • in reply to: Large Testimonial Slider and RSS widget #365831

    Hi!

    I can’t open your screenshot http://dev2.addaconcierge.com/wp-content/uploads/2014/12/Screen-Shot-2014-12-09-at-9.57.04-AM.png
    Anyway it doesn’t stop for me on Mac OSX 10.9.5 with Chrome and Safari 7.1
    Please check on other computers as well.

    Cheers!
    Andy

    in reply to: Megamenu width #365829

    Hi!

    you can control it with this code in Quick CSS:

    #top #header .avia_mega_div .sub-menu {
    width: 80%;
    }
    

    Just adjust “80%” as needed.

    Cheers!
    Andy

    in reply to: Social Icons #365820

    Hey!

    wenn du im WordPress backend bist, klicke auf Enfold->Social Profiles
    Bei Social Icon wähle “Special: Email Icon” und unter Social Icon URL setze das hier ein:

    mailto:DeineE (Email address hidden if logged out) 
    

    Bezüglich deines Logos habe ich dir eine Email geschickt.

    Liebe Grüße,
    Andy

    in reply to: Spezial Menu Hintergrund #365815

    Hi!

    @media only screen and (max-width: 825px) {
    .main_menu {
    right: -240px !important;
    }}
    

    eventuell musst du “max-width: 825px” anpassen, damit es für die Browsergröße passt, die du benötigst. Gleiches gilt für “-240px”.

    Gruß,
    Andy

    in reply to: Blog Beitragsbild #365793

    Hey!

    hmm … versuche diesen code:

    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); 
    function avia_change_archive_blog_layout($layout, $context){
    if( is_tag() ) $layout = 'single-small';
    return $layout;
    }
    

    RSS Feed im Header ist hard-coded, daher geht es nicht so einfach mit CSS. Hast du bereits probiert den Code in den functions.php einzufügen?

    Cheers!
    Andy

    Hi!

    vielen Dank @Flikk

    @yogabewusstsein
    Wenn du noch Fragen hast, sind wir gerne für dich da.

    Liebe Grüße,
    Andy

    in reply to: Conflict with WordPress SEO by Yoast Version 1.7.1 #365407

    Hi!

    ich habe Kriesi und meinen Teamkollegen bescheid gegeben. Bitte warte ein wenig auf eine Antwort.

    Liebe Grüße,
    Andy

    in reply to: Blog Beitragsbild #365392

    Hey!

    kannst du bitte bitte einen Screenshot von deiner functions.php hier zeigen, damit wir uns den Fehler genau anschauen können? um die Zeile 510 herum.

    Vesuche diesen Code stattdessen:

    add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); 
    function avia_change_archive_blog_layout($layout, $context){
    	if(($context == 'archive') || ($context == 'tag')){
    		$layout = 'single-small';
    	}
    	return $layout;
    }
    

    Anschließend leere deinen Browser Cache und refresh deine Seite einige Male.

    Wenn das noch nicht reicht, dann öffne bitte tag.php und suche in Zeile 38 nach:

    $blog_layout = apply_filters('avf_blog_style', avia_get_option('blog_style','multi-big'), 'tag');
                        if($blog_layout == 'blog-grid')
    

    und ersetze diese mit:

    $avia_config['blog_style'] = apply_filters('avf_blog_style', avia_get_option('blog_style','multi-big'), 'tag');
                        if($avia_config['blog_style'] == 'blog-grid')
    

    Anschließend wieder Browser Cache leeren und hoffentlich klappt es dann :).

    Um den RSS Feed zu deaktivieren, benutze diesen code in functions.php:

    function remove_comments_rss( $for_comments ) {
        return;
    }
    add_filter('post_comments_feed_link','remove_comments_rss');
    
    

    Dieser müsste dafür sorgen, dass zwar dein RSS Feed funktioniert, aber nicht mehr oben im Header angezeigt wird.

    Um den RSS Feed vollständig zu deaktivieren, verwende diesen code:

    //Disable RSS Feeds functions
    add_action('do_feed', array( $this, 'disabler_kill_rss' ), 1);
    add_action('do_feed_rdf', array( $this, 'disabler_kill_rss' ), 1);
    add_action('do_feed_rss', array( $this, 'disabler_kill_rss' ), 1);
    add_action('do_feed_rss2', array( $this, 'disabler_kill_rss' ), 1);
    add_action('do_feed_atom', array( $this, 'disabler_kill_rss' ), 1);
    if(function_exists('disabler_kill_rss')) {
    	function disabler_kill_rss(){
    		wp_die( _e("No feeds available.", 'ippy_dis') );
    	}
    }
    
    //Remove feed link from header
    remove_action( 'wp_head', 'feed_links_extra', 3 ); //Extra feeds such as category feeds
    remove_action( 'wp_head', 'feed_links', 2 ); // General feeds: Post and Comment Feed
    

    Cheers!
    Andy

    in reply to: Spezial Menu Hintergrund #365345

    Hey!

    mit diesem Code:

    .main_menu {
    right: -430px !important;
    }
    

    sieht es bei mir so aus:

    Falls es bei dir nicht korrekt angezeigt wird, dann leere zunächst bitte deinen Browser Cache.

    Liebe Grüße!
    Andy

    in reply to: Decrease Size of Icon Box Icon #365141

    Hi!

    use this for the circle:

    #top .iconbox_left_content .iconbox_icon, #top .iconbox_right_content .iconbox_icon {
    height: 50px;
    width: 50px;
    }
    

    Adjust “50px” to your needs.

    Best regards,
    Andy

    in reply to: woocommerce main product image remains tiny #365139

    Hi!

    try to use this plugin: https://wordpress.org/plugins/regenerate-thumbnails/

    Regards,
    Andy

    in reply to: Center cart and mobile menu box #365137

    Hi!

    try to add !important into Yigit’s code:

    @media only screen and (max-width: 767px) {
    .responsive #top .cart_dropdown { top: 20% !important; }
    #advanced_menu_toggle, #advanced_menu_hide { top: 20% !important; }
    .widget_shopping_cart_content { display: none; }}
    

    After putting it in clear your browser cache.

    Regards,
    Andy

    in reply to: Random order for Partner/Logo Element #365135

    Hey!

    please try to clear browser page and then refresh your page a few times.

    Regards,
    Andy

    in reply to: wish to add separators between words in the main menu #365133

    Hey!

    glad it worked out for you. Let us know about your other problem in a new ticket. We are happy to assist you.

    Cheers!
    Andy

    in reply to: changes css for the menu with new header size #365132

    Hey!

    please remove this code from your CSS:

    .header-scrolled #avia-menu li a {
    line-height: 50px !important;
    }
    #avia-menu li a {
    line-height: 330px !important;
    }
    

    After removing it should be automatically replaced by this code:

    #top .av-main-nav ul a {
    line-height: 23px;
    }
    

    Regards,
    Andy

    in reply to: Smaller Margins in widget area? #365129

    Hey!

    could you please post a link to your website? would be easier to assist you.

    Try to add this for right-, bottom- and top-space:

    .inner_sidebar {
    margin-right: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    }
    

    Cheers!
    Andy

    in reply to: Masonry Portfolio to Single Portfolio Full Slider #365121

    Hey!

    I think the size of your lightbox depends on the size of the images you have uploaded.

    Best regards,
    Andy

    in reply to: Masonry gallery image opens in new tab #365118

    Hey!

    “1. The orginal Enfold theme has no problem with the gallery images and it loads the popups just fine” -> So there is no problem anymore?

    2. The pop up images are loading fine for me. Which browser are you using? please clear browser page and then refresh your page a few times.

    3.+4. = Same as 2.

    Cheers!
    Andy

    Hi!

    I have Mac 10.9.5, but I will flag Yigit for this because I think he has Yosemite.

    Best regards,
    Andy

    in reply to: Spezial Menu Hintergrund #365115

    Hey!

    alright. thanks for helping out @Flikk

    Regards,
    Andy

    in reply to: Responsive Images to Browser Width and Height #365099

    Hi!

    I think you need to adjust max-width:

    img, a img {
    max-width: 60%;
    }

    Try to play around with the number until you find what you need.
    Hope that helps.

    Regards,
    Andy

    in reply to: Spezial Menu Hintergrund #365093

    Hey!

    mit dem Befehl

    .main_menu {
    right: -130px !important;
    }
    

    kannst du bestimmen in wieweit das ganze Menü nach rechts an den Rand verschoben wird. Spiele ein wenig mit der Zahl “-130” herum, bis du etwas passendes für dich findest.

    Welches mobiles Gerät verwendest du? Für u.a iPad verwende diesen Code:

    @media only screen and (max-width: 767px) {
    .main_menu {
    right: -60px !important;
    }}
    

    Aber ich glaube fast Logo und Menü könnten sich überlappen oder? Sag noch mal bescheid.

    Gruß,
    Andy

    Hey!

    webm videos are not supported by apple, so you need to upload your video in other formats as well. Please refer to this post: https://kriesi.at/support/topic/webm-video-background-on-color-section-does-not-play/#post-363860

    Cheers!
    Andy

    in reply to: Spezial Menu Hintergrund #364947

    Hey!

    einen transparenten Header kannst du einstellen, wenn du eine Seite editierst und dann rechts runterscrollst bis zu “Header visibility and transparency”.

    Füge folgenden Code ins Quick CSS ein:

    Den Menübalken:

    .main_menu {
    background-color: white;
    height: 25%;
    top: 55px;
    width: 70%;
    right: -130px !important;
    }
    

    Die Menüpunkte:

    .av-main-nav li {
    top: -55px;
    }
    

    Hoffe das hilft.

    Liebe Grüße,
    Andy

    in reply to: Icon Box, icon and icons list #364444

    Hi!

    smaller circle:

    #top .iconbox.av-no-box .iconbox_icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    }
    

    yellow section:

    .av_font_icon.av-icon-style-border .av-icon-char {
    width: 50px !important;
    heigth: 50px;
    margin: 70px auto;
    }
    

    dotted line:
    Yes, It hink that’s normal.

    Regards,
    Andy

    Hi!

    da das Instagrate pro Plugin ein externes ist, können wir dazu nicht viel sagen. Am Besten du erfragst das beim Author/Support dieses Plugins.

    Wenn du eine Änderungen in den Einstellungen vorgenommen hast, dann versuche zunächst deinen Browser Cache zu leeren.

    Best regards,
    Andy

    in reply to: Menu and breadcrumb position move after update #364411

    Hey GOWD!

    Sorry for the delay.

    Please use this in Quick CSS:

    To align the logo/menu and to have bigger gap between menu and main content:

    #header_main {
    left: 55px;
    padding-bottom: 100px;
    }
    

    To stretch the menu:

    .html_header_top.html_bottom_nav_header .main_menu {
    width: 113%;
    }
    

    To make a gap between breadcrumb and content:

    .page-id-44 .stretch_full.container_wrap.alternate_color.dark_bg_color.title_container {
    margin-bottom: 20px;
    }
    

    Hope that helps.

    Regards,
    Andy

    in reply to: Main menu navigation not displaying correctly #364400

    Hey!

    have you got any idea why it’s happening again? Which changed did you make?
    I think you might need to get another fresh copy of Enfold to override it via FTP like Ismael mentioned.

    Best regards,
    Andy

    in reply to: SUB menu Font Color #364380

    Hi!

    Enter this code in Quick CSS:

    main menu:

    .header_color .sub_menu>ul>li>a, .header_color .sub_menu>div>ul>li>a, .header_color .main_menu ul:first-child > li > a, #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a, #top .header_color .sub_menu li ul a {
    color: red;
    }
    

    sub menu:

    .main_color .header_bg, .main_color .main_menu ul ul, .main_color .main_menu .menu ul li a, .main_color .pointer_arrow_wrap .pointer_arrow, .main_color .avia_mega_div, .main_color .av-subnav-menu > li ul, .main_color .av-subnav-menu a {
    color: red;
    }
    

    Hope that helps.

    Cheers!
    Andy

    in reply to: Webm video background on color section does not play #364374

    Hey!

    awesome! again thanks for sharing.

    Best regards,
    Andy

Viewing 30 posts - 16,711 through 16,740 (of 17,336 total)