Forum Replies Created

Viewing 30 posts - 15,001 through 15,030 (of 66,827 total)
  • Author
    Posts
  • in reply to: Change Color of Masonry Gallarey "Load More" Button #1282773

    Hi,

    Thank you for the info.

    1.) Try to use this css code to adjust the style of the loading icon.

    .avia_loading_icon {
    	position: fixed;
    	top: 0;
    	left: 0;
    	background: rgba(0,0,0,0.5);
    	width: 100%;
    	height: 100%;
    	z-index: 10000;
    }
    
    .av-siteloader {
    	transform: translate(50%, 50%);
    	top: 50%;
    }

    2.) Looks like the default image title is showing instead of the updated one. How did you adjust the first 3 entries previously?

    Best regards,
    Ismael

    in reply to: Post Slider hover transition #1282768

    Hey Matt,

    Thank you for the inquiries.

    1.) The shadow effect on hover can be removed using this css code.

    .avia-content-slider:hover .slide-entry:hover {
    	box-shadow: none !important;
    }
    

    2.) This seems to be the css code that is causing the transition issue.

    .slide-entry-wrap.active > article {
    	padding: 0px 0px 0px 70px;
    }
    

    Please replace it with the following css instead.

    .slide-entry-wrap > article {
    	padding: 0px 0px 0px 70px;
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Will this setting go back to the default “portfolio-item”

    The option should be retained, but make sure to add the previous snippet again in the functions.php file to omit the post type path from the URL. We recommend using a child theme so that you do not have to redo the changes every update.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    in reply to: Links to Tab Sections do not work when on active page #1282763

    Hi,

    Thank you for the info.

    That is the default behavior of the tab section, but we could use a script to allow opening of a specific section when a corresponding menu item is clicked.

    // https://kriesi.at/support/topic/link-to-a-tab-in-tab-section/#post-1252181

    Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Horizontal Gallery #1282762

    Hey Stephan,

    Thank you for the inquiry.

    Are you referring to the lightbox preview? Please provide the site URL in the private field so that we could check the gallery. By default, the image shown in the lightbox preview is the “large” thumbnail and it can be adjusted it in the Settings > Media panel.

    Best regards,
    Ismael

    in reply to: Soft Hypens is not working on mobile for me #1282761

    Hi,

    Have you tried wrapping a phrase inside an html tag with a unique class name, and style it differently?

    Example:

    Ultraschalluntersuchung der <span class="break">Hals­­schlag­­adern – Carotissonographie in Wien</span>
    

    You can then use a css code like the following to move it on another line, or to control how it looks on mobile view.

    .mobilleistung li a .break {
    	display: inline-block;
    }
    

    Best regards,
    Ismael

    in reply to: When I upload images I couldn´t see the thumbnails #1282754

    Hi,

    Thank you for the update.

    Did you define the UPLOADS constant before this line in the wp-config.php file?

    require_once(ABSPATH.'wp-settings.php');
    

    Please post the FTP details in the private field so that we could test it properly.

    Best regards,
    Ismael

    in reply to: Icon displacement after Enfold Update 4.7.6.4 #1282751

    Hey Lars,

    Thank you for the inquiry.

    We can see the issue on Firefox, but could not figure out what is causing it. Maybe this css code will help.

    .av-align-top {
    	vertical-align: top !important;
    }

    That is the only property that seems to be affecting the alignment of the icons.

    Best regards,
    Ismael

    in reply to: Special Characters issue #1282255

    Hi,

    Thank you for that info.

    Looks like the issue is caused by an undefined function called by the really-simple-captcha plugin. You may need to disable the plugin, or contact the plugin developers so that they can inspect the issue. The function that it is trying to call is imagettftext.

    Best regards,
    Ismael

    in reply to: site faster #1282254

    Hi,

    As we have said above, you cannot use the link tag to load the icon font, it will only work with the fontface rule, so the warning in the page speed insight tool will remain unless you disable the icon fonts.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Enfold Menu Accessibility #1282252

    Hi,

    Thank you for the info.

    We cannot edit the files because the Appearance > Editor panel is not available. Please include the FTP details as well so that we could access the file server, or just enable the WP file editor.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The code should look something like this..

    /** alter masonry query **/
    function avia_masonry_entries_query_mod( $query ) {
    	$query["author"] = 35;
    	return $query;
    }
    
    add_filter("avia_masonry_entries_query", "avia_masonry_entries_query_mod");
    

    .. where 35 is the ID of the author. And in the Masonry element, you can already select the categories in the Which Entries? settings, so you do not have to adjust the taxonomy or category query.

    Best regards,
    Ismael

    in reply to: Video playback issues – part of slideshow #1282249

    Hi,

    Thank you for following up.

    The page using Youtube is now looping properly on our end — playlist parameter is removed. Have you tried viewing it on a Safari browser? Please make sure to purge the cache and do a hard refresh before testing it.

    We checked the page using Vimeo on older versions of IE (11, 10, 9) but we are not able to reproduce the issue. The video loops and the slider autorotates indefinitely.

    Best regards,
    Ismael

    in reply to: Aligning the header logo left #1282246

    Hi,

    That is good to know. Thank you for the above info. Please do not hesitate to open another thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Enfold Gallery: images at wrong positions – #1282245

    Hi,

    Thank you for the update.

    If you want to continue using the responsive images option, then we would have to modify the gallery.php file and remove the responsive image option manually. Look for the same line of code that you mentioned above, and remove it.

    $img_tag = Av_Responsive_Images()->prepare_single_image( $img_tag, $attachment->ID, $html_lazy_loading );
    

    This should disable the responsive image option for the gallery only, and in order to preserve the modification in your child theme, please check the following documentation.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    in reply to: Enfold and Yoast Premium combined show odd information #1282236

    Hi,

    Thank you for the inquiry.

    The SEO analysis tool from those plugins are still not compatible with shortcodes or most of the layout builder including the Advance Layout Builder from the theme, but search optimization if done properly should not be affected by it. The analysis tool will just return limited data and will not recognized most of the content when layout builder is active, and thus may return lower scores based on the available data that the analysis could actually read.

    Best regards,
    Ismael

    in reply to: Issue with portfolio grid layout #1282232

    Hi,

    The latest version should be available anytime soon, but we do not know the exact date yet. Please feel free to open another thread should you need anything else. Glad that @Guenni007 helped you with this one.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: YouTube video embed on mobile #1282230

    Hi,

    We can now reproduce it on an Galaxy S9/S9+ emulation, but we do not see any errors. The video does not automatically play after clicking once, so you have to click it again. Is it OK if we access the dashboard and adjust the video settings?

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: General Theme Edit Issues #1282224

    Hi,

    Thank you for the update.

    1.) Is it still stretched vertically? Which browser are you using, and have you tried using a different one?

    2.) Awesome! Glad it is fixed.

    Best regards,
    Ismael

    in reply to: Special Characters issue #1282223

    Hi,

    We still don’t see any error messages in the front end. Are you sure that you added the snippet above correctly? Please post the FTP details in the private field so that we could access the file server and/or edit the files when necessary.

    Temporarily, you could use the Contact Form element from the Advance Layout Builder (ALB).

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Dealing with Windows Display Scaling #1282221

    Hi,

    Thank you for the update.

    The theme already contains responsive styling for smaller screens, so you do not have to do anything. The screenshot of the site scaled to 150% actually looks fine, again because of the existing styles for smaller screens or because of the css media queries from the theme, but you could use additional css media queries to adjust the style of the page if you think that it is not supposed to look that way.

    Best regards,
    Ismael

    in reply to: Add to Cart Button #1282219

    Hi,

    Odd. The max attribute of the quantity field is already set to 1 but for some reason, it is still possible to add another item.

    <input type="text" id="quantity_602fa7777391c" class="input-text qty text" step="1" min="1" max="1" name="quantity" value="1" title="Qty" size="4" placeholder="" inputmode="numeric">
    

    This might be a bug in the quantity field script. Is it working correctly when you add more than 1 item or increase the stock level?

    Thank you for following up.

    Best regards,
    Ismael

    in reply to: Need some mobile CSS help in my Enfold Startsite #1282217

    Hi,

    Thank you for the update.

    Try to add this css code to create more space for the icon and the title.

    .avia-icongrid-tooltip li .avia-icongrid-front {
    	padding: 0;
    }

    Make sure to include it inside the css media query that we created above. And to increase the size of the icon, try to adjust this css code.

    .avia-icongrid-icon {
    	font-size: 18px;
    	line-height: 1;
    	margin-bottom: 0.5em;
    	color: initial;
    }
    

    Increase the font-size from 18px to 30px or to any value that you prefer.

    Best regards,
    Ismael

    in reply to: How to change the read more link with a button ? #1282211

    Hi,

    Thank you for the update.

    They look the same on my end. Did you set the Enfold > Blog Layout > Blog Blog Styling to Elegant?

    Best regards,
    Ismael

    in reply to: Post Type Link only works with blog style grid layout #1282208

    Hi,

    Thank you for the update.

    In the list layout, it actually works but you have to click the post title and not the read more link. If you want, we could hide the read more button for posts with link format using this css code.

    .format-link .read-more-link {
    	display: none !important;
    }
    

    To disable just the read more link but keep the actual button, use this instead.

    .format-link .read-more-link {
    	pointer-events: none !important;
    }

    Best regards,
    Ismael

    in reply to: Accordion Slider disorting / stretching images #1282206

    Hi,

    Thank you for the update.

    Looks like that is the default style of the accordion images. To override it we added this css code in the Quick CSS field.

    #top .aviaccordion-slide img {
    	height: auto !important;
    }

    Please purge the cache and do a hard refresh before checking the page. We have also disabled the Performance > File Compression settings temporarily.

    Best regards,
    Ismael

    in reply to: table background cell colours #1282203

    Hi,

    Yes, you would have to adjust it with css if you want the color of that particular table to be different from the default color.

    To change the style of the elements inside a specific column or table, we will try to explain what we did above. This selector targets the first column of the table inside the pricing_table-lwp section.

    #top #pricing_table-lwp .avia-table .pricing-table-wrap:first-child
    

    .. so if you want to change anything inside that column, just prepend the selector of the target element to that selector. In order to change the style of the first cell inside the first column, you can try this css code.

    #top #pricing_table-lwp .avia-table .pricing-table-wrap:first-child .pricing-table li:nth-child(2) {
        background: red;
    }

    For the second cell.

    #top #pricing_table-lwp .avia-table .pricing-table-wrap:first-child .pricing-table li:nth-child(3) {
    	background: red;
    }

    Third:

    #top #pricing_table-lwp .avia-table .pricing-table-wrap:first-child .pricing-table li:nth-child(4) {
    	background: red;
    }
    

    Again, we are using nth-child selectors to target a child element inside a parent container.

    // https://css-tricks.com/almanac/selectors/n/nth-child/

    As you may have noticed, we did not use nth-child(1) because the first cell is the heading row, which we already adjusted above using its unique class name avia-heading-row.

    #top #pricing_table-lwp .avia-table .pricing-table-wrap:first-child li.avia-heading-row {
        background-color: #0000ff;
    }

    Best regards,
    Ismael

    in reply to: Link to Album Lightbox #1282200

    Hi,

    Glad it is working.

    You do not have to adjust anything aside from the image links inside the gallery container. Please note that this line..

    $(this).next().magnificPopup('open');
    

    .. looks for the next element after the gallery-link container, which is the gallery container and includes any link tag inside the gallery container in the lightbox preview.

    And do not forget to add the css code above to set the opacity of the mfp-figure container.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    You have to make the single-product-summary and the single-product-main-image containers to float to the right instead of to the left.

    .single-product-summary, single-product-main-image {
    	float: right !important;
    }
    
    .single-product-main-image {
    	margin-right: 0;
    }
    
    .single-product-summary {
    	margin-left: 50px;
    }
    

    Then style the sidebar with this css code.

    #top #main .sidebar {
    	border-right-style: solid;
    	border-right-width: 1px;
    	margin-left: 0;
    }
    

    Best regards,
    Ismael

    in reply to: Header width scrollin down #1282197

    Hi,

    Thank you for the update.

    You can use this css code to adjust the height of the scrolled header to 177px.

    @media only screen and (min-width: 768px) {
        .container.av-logo-container, .logo a, .logo a img, .main_menu li a {
    	height: 177px !important;
    	height: 177px !important;
    	line-height: 177px !important;
    	max-height: 177px !important;
        }
    }

    Best regards,
    Ismael

Viewing 30 posts - 15,001 through 15,030 (of 66,827 total)