Viewing 30 results - 6,211 through 6,240 (of 142,898 total)
  • Author
    Search Results
  • #1433742

    Thnx, this does the trick. It is OK now!

    Off topic, but how can i turn off the overlay on the sorted images which shows at mouse-over the image title?
    In the advanced style editor i see one field called Overlay of linked image, but this does not have any effect.
    grtz. Cornelis

    ausgesonnen
    Participant

    Hi there,
    Could somebody please send me code that works? I used to make my websites with the7 and every answer they sent was spot on. I am really amazed how much code you send that just doesn’t work. ?!? Sorry to be so blunt but I am now running out of time.

    Please help with the following problem:
    Using the link below, please navigate to page “über mich”. At the bottom are 3 tables. In the desktop version they look ok now but in the mobile view they are messed up.

    Please send working code for the mobile version, so that:
    1. the dates are not displayed double
    2. no borders around all 3 tables, not just the top table
    3. the years are not spread over 2 lines
    4. the desktop version is unchanged by the new code

    Thanks

    The code that you have sent so far, that I have used and that works ok in the desktop view is this:

    #top .av-82qhko-49fd44439e70710ba9259a5b8656603c .avia-data-table {
    border: 0;
    padding: 10;
    }

    div .avia-table {
    background: transparent;

    }

    #top.page-id-472 #main .main_color .avia-data-table * {
    border: none;
    background-color: #fff;
    font-size: 18px;
    text-align: left;
    }

    #top.page-id-472 .main_color .avia-data-table.avia_pricing_minimal th {
    color: #666666;
    width: 15%;
    }

    #top.page-id-472 .av-hriqo-df64f73a2229a5a484cc56fae9caca2e .avia-data-table td:before {
    display: none;
    }

    .av-hriqo-df64f73a2229a5a484cc56fae9caca2e table tr th {
    width: 20%;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    background-color: #000000;
    padding: 8px;
    }

    • This topic was modified 2 years, 2 months ago by ausgesonnen.
    #1433725

    In reply to: Enfold never more

    Hey Keasyconciergerie,

    Double post, closing. https://kriesi.at/support/topic/enfold-never-more-2/

    Best regards,
    Rikard

    Hi,

    I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet #top #header #header_meta .social_bookmarks {
        display: block;
      }
    }

    Best regards,
    Rikard

    #1433716

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1433709
    elenapoliti
    Participant

    Hi I have a problem with woocommerce. I have 4 products: 2 of them are working fine. The other 2 stopped working in the last couple of weeks (I realized it now when a customer advised of the error). When adding to the cart a 503 error occurs. Checking out the product (by inspecting the html) I see that when selecting a variation the price doesn’t appear.
    By clicking on “add to cart” the page gives the 503 error.

    I tried to create a new brand new product with variation and one as a simple product and still have the error. Do you have any idea of what is happening?
    In private see the url to the products

    • This topic was modified 2 years, 2 months ago by elenapoliti.
    #1433708

    Thanks Ismael! I did try that and it’s breaking to mobile on all desktop sizes not just 1024. Any other thoughts?

    #1433704

    Hi Ismael,
    you´re right :) I copy the missing file ” skin.min.css” into the folder.
    Now it works fine.
    Thx a lot and have a nice day :)
    You can close the topic

    #1433702

    Hi Ismael,

    the masonry of the portfolio pages are back again.
    The archive pages still don’t show a masonry grid.
    In the new archive code I see twice a line that starts with “$atts =array ( …”.
    Maybe this produces a conflict?

    
    <?php
    	if( ! defined( 'ABSPATH' ) ) { die(); }
    
    	global $avia_config, $more;
    
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	get_header();
    
    	$showheader = true;
    
    	if( avia_get_option( 'frontpage' ) && $blogpage_id = avia_get_option( 'blogpage' ) )
    	{
    		if( get_post_meta( $blogpage_id, 'header', true ) == 'no' )
    		{
    			$showheader = false;
    		}
    	}
    
    	if( $showheader )
    	{
    		echo avia_title( array( 'title' => avia_which_archive() ) );
    	}
    
    	do_action( 'ava_after_main_title' );
    
    	?>
    
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    
    			<div class='container template-blog '>
    
    				<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper( array( 'context' => 'content', 'post_type' => 'post' ) );?>>
    
    					<?php
    
    					$tds = term_description();
    					if( $tds )
    					{
    						echo "<div class='category-term-description'>{$tds}</div>";
    					}
    
    					$avia_config['blog_style'] = apply_filters( 'avf_blog_style', avia_get_option( 'blog_style', 'multi-big' ), 'archive' );
    
    					if( $avia_config['blog_style'] == 'blog-grid' )
    					{
    						global $posts;
    
    						$post_ids = array();
    						foreach( $posts as $post )
    						{
    							$post_ids[] = $post->ID;
    						}
    
    						if( ! empty( $post_ids ) )
    						{
    							$atts = array(
    										'type'			=> 'grid',
    										'items'			=> get_option( 'posts_per_page' ),
    										'columns'		=> 3,
    										'class'			=> 'avia-builder-el-no-sibling',
    										'paginate'		=> 'yes',
    										'use_main_query_pagination' => 'yes',
    										'custom_query'	=> array(
    																'post__in'	=> $post_ids,
    																'post_type'	=> get_post_types()
    															)
    									);
    
    							/**
    							 * @since 4.5.5
    							 * @return array
    							 */
    							$atts = apply_filters( 'avf_post_slider_args', $atts, 'archive' );
    
    							$atts =array (
    				'link' => 
    				array (
    				  0 => 'category',
    				),
    				'term_rel' => 'IN',
    				'wc_prod_visible' => '',
    				'wc_prod_hidden' => 'hide',
    				'wc_prod_featured' => '',
    				'prod_order_by' => '',
    				'prod_order' => '',
    				'date_filter' => '',
    				'date_filter_start' => '',
    				'date_filter_end' => '',
    				'date_filter_format' => 'yy/mm/dd',
    				'period_filter_unit_1' => '1',
    				'period_filter_unit_2' => 'year',
    				'page_element_filter' => '',
    				'sort' => 'yes',
    				'query_orderby' => 'date',
    				'query_order' => 'DESC',
    				'caption_elements' => 'title excerpt',
    				'caption_styling' => '',
    				'caption_display' => 'always',
    				'img_copyright' => '',
    				'size' => 'fixed masonry',
    				'orientation' => '',
    				'image_size' => 'masonry',
    				'gap' => '1px',
    				'columns' => 'flexible',
    				'av-desktop-columns' => '',
    				'av-medium-columns' => '',
    				'av-small-columns' => '',
    				'av-mini-columns' => '',
    				'items' => '12',
    				'paginate' => 'none',
    				'color' => '',
    				'custom_bg' => '',
    				'img_copyright_font' => '',
    				'av-desktop-font-img_copyright_font' => '',
    				'av-medium-font-img_copyright_font' => '',
    				'av-small-font-img_copyright_font' => '',
    				'av-mini-font-img_copyright_font' => '',
    				'img_copyright_color' => '',
    				'img_copyright_bg' => '',
    				'animation' => 'active',
    				'animation_duration' => '',
    				'animation_custom_bg_color' => '',
    				'animation_custom_bg_color_multi_list' => '',
    				'animation_z_index_curtain' => '100',
    				'overlay_fx' => 'active',
    				'img_scrset' => '',
    				'lazy_loading' => 'disabled',
    				'av-desktop-hide' => '',
    				'av-medium-hide' => '',
    				'av-small-hide' => '',
    				'av-mini-hide' => '',
    				'alb_description' => '',
    				'id' => '',
    				'custom_class' => '',
    				'template_class' => '',
    				'element_template' => '',
    				'one_element_template' => '',
    				'show_locked_options_fakeArg' => '',
    				'av_uid' => 'av-3lh7ch',
    				'sc_version' => '1.0',
    				'ids' => false,
    				'action' => false,
    				'post_type' => 
    				array (
    				  'post' => 'post',
    				  'page' => 'page',
    				  'attachment' => 'attachment',
    				  'revision' => 'revision',
    				  'nav_menu_item' => 'nav_menu_item',
    				  'custom_css' => 'custom_css',
    				  'customize_changeset' => 'customize_changeset',
    				  'oembed_cache' => 'oembed_cache',
    				  'user_request' => 'user_request',
    				  'wp_block' => 'wp_block',
    				  'wp_template' => 'wp_template',
    				  'wp_template_part' => 'wp_template_part',
    				  'wp_global_styles' => 'wp_global_styles',
    				  'wp_navigation' => 'wp_navigation',
    				  'acf-taxonomy' => 'acf-taxonomy',
    				  'acf-post-type' => 'acf-post-type',
    				  'acf-field-group' => 'acf-field-group',
    				  'acf-field' => 'acf-field',
    				  'product' => 'product',
    				  'product_variation' => 'product_variation',
    				  'shop_order' => 'shop_order',
    				  'shop_order_refund' => 'shop_order_refund',
    				  'shop_coupon' => 'shop_coupon',
    				  'shop_order_placehold' => 'shop_order_placehold',
    				  'alb_elements' => 'alb_elements',
    				  'alb_custom_layout' => 'alb_custom_layout',
    				  'rm_content_editor' => 'rm_content_editor',
    				  'portfolio' => 'portfolio',
    				  'avia_framework_post' => 'avia_framework_post',
    				),
    				'offset' => 0,
    				'container_links' => 'active',
    				'link_dest' => '',
    				'lightbox_text' => '',
    				'container_class' => 'av-masonry-entries',
    				'auto_ratio' => 1.7,
    				'set_breadcrumb' => true,
    				'custom_markup' => '',
    				'taxonomy' => 'category',
    				'categories' => 
    				array (
    				),
    			);
    
    	        $blog = new avia_masonry($atts);
    			$blog->get_element_styles();
    			$blog->query_entries();
    
    	        echo '<div class="entry-content-wrapper">' . $blog->html() . '</div>';
    						}
    						else
    						{
    							get_template_part( 'includes/loop', 'index' );
    						}
    					}
    					else
    					{
    						/* Run the loop to output the posts.
    						 * If you want to overload this in a child theme then include a file
    						 * called loop-index.php and that will be used instead.
    						 */
    						$more = 0;
    						get_template_part( 'includes/loop', 'index' );
    					}
                        ?>
    
    				<!--end content-->
    				</main>
    
    				<?php
    
    				//get the sidebar
                    if( avia_get_option( 'archive_sidebar' ) == 'archive_sidebar_separate' )
    				{
                        $avia_config['currently_viewing'] = 'archive';
                    }
                    else
    				{
                        $avia_config['currently_viewing'] = 'blog';
                    }
    
    				get_sidebar();
    
    				?>
    
    			</div><!--end container-->
    
    		</div><!-- close default .container_wrap element -->
    
    <?php
    		get_footer();
    

    Best regards,
    Vera

    • This reply was modified 2 years, 2 months ago by Vera.
    #1433701
    Grobi
    Participant

    Hi Guys.
    I wanted to define a special color to the menu option “Button Style Colored” and used the lines by Yigit given in Post #669012 (that work well).

    #top #wrap_all .Header_color .AV-menu button-colored> A .avia-menu-text {
    Background: #50B849;
    }

    Is it possible to define a second color that is displayed at a mouse over event?
    Best regards
    Grobi

    #1433681

    Hi,
    You could try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top #wrap_all .all_colors #av_section_1 h1 {
        font-size: 35px;
    }
    }

    It will make the H1 text at the top of the page linked below 35px on mobile instead of the 65px that it is now on desktop.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1433669

    Hi,

    Thank you for the info.

    Please remove the filter in the functions.php file and replace the modification in the archive.php file with the following:

    $atts =array (
    				'link' => 
    				array (
    				  0 => 'category',
    				),
    				'term_rel' => 'IN',
    				'wc_prod_visible' => '',
    				'wc_prod_hidden' => 'hide',
    				'wc_prod_featured' => '',
    				'prod_order_by' => '',
    				'prod_order' => '',
    				'date_filter' => '',
    				'date_filter_start' => '',
    				'date_filter_end' => '',
    				'date_filter_format' => 'yy/mm/dd',
    				'period_filter_unit_1' => '1',
    				'period_filter_unit_2' => 'year',
    				'page_element_filter' => '',
    				'sort' => 'yes',
    				'query_orderby' => 'date',
    				'query_order' => 'DESC',
    				'caption_elements' => 'title excerpt',
    				'caption_styling' => '',
    				'caption_display' => 'always',
    				'img_copyright' => '',
    				'size' => 'fixed masonry',
    				'orientation' => '',
    				'image_size' => 'masonry',
    				'gap' => '1px',
    				'columns' => 'flexible',
    				'av-desktop-columns' => '',
    				'av-medium-columns' => '',
    				'av-small-columns' => '',
    				'av-mini-columns' => '',
    				'items' => '12',
    				'paginate' => 'none',
    				'color' => '',
    				'custom_bg' => '',
    				'img_copyright_font' => '',
    				'av-desktop-font-img_copyright_font' => '',
    				'av-medium-font-img_copyright_font' => '',
    				'av-small-font-img_copyright_font' => '',
    				'av-mini-font-img_copyright_font' => '',
    				'img_copyright_color' => '',
    				'img_copyright_bg' => '',
    				'animation' => 'active',
    				'animation_duration' => '',
    				'animation_custom_bg_color' => '',
    				'animation_custom_bg_color_multi_list' => '',
    				'animation_z_index_curtain' => '100',
    				'overlay_fx' => 'active',
    				'img_scrset' => '',
    				'lazy_loading' => 'disabled',
    				'av-desktop-hide' => '',
    				'av-medium-hide' => '',
    				'av-small-hide' => '',
    				'av-mini-hide' => '',
    				'alb_description' => '',
    				'id' => '',
    				'custom_class' => '',
    				'template_class' => '',
    				'element_template' => '',
    				'one_element_template' => '',
    				'show_locked_options_fakeArg' => '',
    				'av_uid' => 'av-3lh7ch',
    				'sc_version' => '1.0',
    				'ids' => false,
    				'action' => false,
    				'post_type' => 
    				array (
    				  'post' => 'post',
    				  'page' => 'page',
    				  'attachment' => 'attachment',
    				  'revision' => 'revision',
    				  'nav_menu_item' => 'nav_menu_item',
    				  'custom_css' => 'custom_css',
    				  'customize_changeset' => 'customize_changeset',
    				  'oembed_cache' => 'oembed_cache',
    				  'user_request' => 'user_request',
    				  'wp_block' => 'wp_block',
    				  'wp_template' => 'wp_template',
    				  'wp_template_part' => 'wp_template_part',
    				  'wp_global_styles' => 'wp_global_styles',
    				  'wp_navigation' => 'wp_navigation',
    				  'acf-taxonomy' => 'acf-taxonomy',
    				  'acf-post-type' => 'acf-post-type',
    				  'acf-field-group' => 'acf-field-group',
    				  'acf-field' => 'acf-field',
    				  'product' => 'product',
    				  'product_variation' => 'product_variation',
    				  'shop_order' => 'shop_order',
    				  'shop_order_refund' => 'shop_order_refund',
    				  'shop_coupon' => 'shop_coupon',
    				  'shop_order_placehold' => 'shop_order_placehold',
    				  'alb_elements' => 'alb_elements',
    				  'alb_custom_layout' => 'alb_custom_layout',
    				  'rm_content_editor' => 'rm_content_editor',
    				  'portfolio' => 'portfolio',
    				  'avia_framework_post' => 'avia_framework_post',
    				),
    				'offset' => 0,
    				'container_links' => 'active',
    				'link_dest' => '',
    				'lightbox_text' => '',
    				'container_class' => 'av-masonry-entries',
    				'auto_ratio' => 1.7,
    				'set_breadcrumb' => true,
    				'custom_markup' => '',
    				'taxonomy' => 'category',
    				'categories' => 
    				array (
    				),
    			);
    
    	        $blog = new avia_masonry($atts);
    			$blog->get_element_styles();
    			$blog->query_entries();
    
    	        echo '<div class="entry-content-wrapper">' . $blog->html() . '</div>';
    

    Also, you have to make sure that Grid Layout is selected in the Enfold > Blog Layout > Blog Layout settings.

    Best regards,
    Ismael

    #1433653

    In reply to: tables column widths

    Hi,

    Also, your new code you sent has destroyed the layout in the Desktop view.

    Did you add this css code?

    div .avia-table {
        background: transparent;
        width: 100%;
        clear: both;
        margin: 30px 0;
        table-layout: fixed;
    }
    

    If you didn’t add it, please include this css code to override the default style. Or post the login details in the private field so that we can add the modifications for you.

    div .avia-table {
    table-layout: auto;
    }
    

    Aren’t you checking the code before you are sending it out? This is getting quite frustrating.

    Yes, we always check the modifications before sending it out to the users. The table seems to be displaying as it should when we checked the site on mobile view. Please check the screenshot in the private field.

    I will tag the rest of the team so that they can check the modifications.

    Best regards,
    Ismael

    Hey studiovene,

    You have this in Quick CSS:

    @media only screen and (max-width: 1220px) {
      #top .social_bookmarks { 
       display: none !important; 
      }
    }

    Please try removing it.

    Best regards,
    Rikard

    #1433646

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
      .responsive #top #wrap_all .main_menu {
        left: 0;
        right: auto;
      }
      .responsive #top .logo {
        width: 100%;
      }
      .responsive .logo img {
        float: right;
      }
    }

    Best regards,
    Rikard

    #1433639

    Hi,

    Great, I’m glad to hear that you got it working. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1433631

    Hi,

    Thank you for the screenshot.

    Please replace the css rule inside the css media query with the following.

    .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
        display: block;
        height: auto;
        overflow: hidden;
    }
    

    We just set the height to auto and overflow property to hidden.

    Best regards,
    Ismael

    studiovene
    Participant

    I want my social icons to remain visible on all mobile resolutions. They currently disappear on tablet resolutions such as 1024 x 768. I also need them to display exactly as they are now. I did manage to get them to display at one point, but then they had a strange border around them.

    #1433623

    Sorry – long time ago – the snippets on paste bin are erased:
    here you can find that code for child-theme functions.php again:

    https://pastebin.com/EesfsTR0

    if I post the snippet here, it can no longer be copied for use. The board software immediately converts several characters into entities that make copy&paste unusable. That’s why I showed the snippet as an image in the link.

    #1433617

    Hey Mike

    This is for a text element on a page.
    I tried deactivating the caching plugin but it still didn’t change anything on mobile. I do have advanced styling set for the H tags.

    So is there any other way I can achieve what I want? I’m wanting to have some text over an image on my homepage like a banner – and I need the text to be the H1 tag. On desktop I want this text font size nice and big but want it to proportionally display on mobile – so not the same font size as its too big. Any suggestions how I can achieve this?
    Cheers
    Natasha

    #1433595
    StarSolutions
    Participant

    hi,
    my site is https://XXX (see private data)

    on the home page there is photo wall, with highlights pictures to all the portfolio albums

    now i want to sort this photowall in a specific order. the wall gives some sorting options, however whatever i try i do not get the specific order i want.

    i tried with the dates but it does not succeed.. i do not want to change the slug as that affects the URL.
    basically i only want to give every portfolio item a number like 1,2,3 etc. and that photo are shown in the order 1,2,3 from left to right or top to down.

    What is the way to force the photo’s to be shown in the order i want?

    • This topic was modified 2 years, 2 months ago by StarSolutions.
    #1433521

    Thank you Mike, that worked.

    Could you share what the problem was? I downloaded the Zip from your official Site. My Client tried this too on her laptop and she had the same problem.

    Thank you!
    Cheers
    Monika

    #1433520

    Hi,
    Do you want a different font sizes for the text in your topbar or do you mean for a text element on your page?
    The “Font sizes” – “Textblock Font Sizes” and changing smaller screens settings should work if it is in a text element on your page.
    Try disabling any caching plugins and check again. Also note that if you have set the font size in the Enfold Theme Options ▸ Advanced Styling, or with custom css, this may override the element setting.
    If this doesn’t help please include an admin login in the Private Content area and tell us which text block you are working on so we can check.

    Best regards,
    Mike

    #1433473
    Munford
    Participant

    Hi
    I want to hide the quotation marks in audio titles on my site.
    I looked at this thread but couldn’t find the correct code.

    Can you help me with this?
    thanks
    Nancy

    #1433471
    paddyodor
    Participant

    Hi there,

    Enjoying setting up http://www.kinvaratidytowns.ie so far with the Enfold theme. However I have noticed a few things….
    The Enfold Child Facebook Likebox and social profiles show up on Google Chrome but not in Edge, niether on my desktop or laptop. Is there any reason for this and might there be a workaround?

    Regards,

    #1433465

    In reply to: tables column widths

    Also, your new code you sent has destroyed the layout in the Desktop view. Aren’t you checking the code before you are sending it out? This is getting quite frustrating.
    Generally I am noticing, that the answers that are coming from Ismael are often not working or he is stalling for time, saying he doesn’t understand the question.
    Could somebody else please see what is going on with these tables? It should be something quite simple for you I suppose? For me unfortunately it is not which is why I opted to pay for this service. Time is running out and this issue needs to be solved asap.

    thank you.

    #1433452

    Hi,

    Great, I’m glad that you solved the problem. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1433445

    Hi,

    Glad to know that you managed to adjust the style of the sort buttons. Your modifications are actually the same as the ones we provided above, so it’s quite odd that the modification didn’t work. Anyway, to align the sort buttons to the center, you can add this css code:

    #top .sort_by_cat {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    

    And to increase the size of the grid items, you can adjust the Column count settings in the Styling > Columns tab.

    Best regards,
    Ismael

    #1433439
    Munford
    Participant

    Hi I am trying to target a page with page-id-1547 to change the h2 font size just on that page.
    I tried this:
    #top .page-id-1547 .h2 {
    font-size: 40px!important;
    }
    but it’s still showing the font at size 28, which is the default. What is the best way to do this?
    I tried setting the font size in the text block, but that also isn’t working.
    thanks for your help
    Nancy

    • This topic was modified 2 years, 2 months ago by Munford.
    • This topic was modified 2 years, 2 months ago by Munford.
Viewing 30 results - 6,211 through 6,240 (of 142,898 total)