Viewing 30 results - 93,661 through 93,690 (of 142,818 total)
  • Author
    Search Results
  • loudcow
    Participant

    Hey there,

    When the ‘left side menu’ is selected I have issues with the socket text being cut off slightly. Approximately 10 characters. Only when side menu option chosen and only on posts. Pages are fine. And all fine when top menu is chosen.

    To view: I am developing on a new server before DNS changes are made and hence using host file trick to view/develop. If you wish to view the site I have added the domain name and the IP address in private content and also a link to the screen shot highlighting the issue.

    Thank you!

    #654088

    Our website is in 2 languages: dutch and french. I made translated widget images for both languages. But if I create an widget in dutch, the versin in franch don’t show up or shows the dutch version

    regards

    Christophe

    #654084

    Hi @debenm;
    this topic may help you.

    #654072
    debenm
    Participant

    I’m wondering if there is a way with quick CSS to have a different background image appear in a color section when on a tablet or phone browser?

    Our site https://enduringword.com has a color section with a background image on the front page. It looks good on the desktop browser, but of course as the site downsizes to tablet and then phone size it doesn’t look the way we would like. So I’m wondering if I can set different background images for the various size screens?

    Thanks,
    Miles

    #654065

    Hi Vinay – I just tried using that and adding it to my child theme CSS

    .sd-blue{
    width: 100%;
    height: 100%;
    background: url(‘http://rfl.shortiedesigns.com/wp-content/uploads/2016/06/blue_bg-1.png’) center center no-repeat;
    background-size: cover;

    &:before {
    content: ”;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to bottom right,#002f4b,#dc4225);
    opacity: .6;
    }
    }

    But when I do the background goes white

    Here is a screenshot of what i’m trying to do

    https://www.dropbox.com/s/fhjvczd5lacv3fg/Screen%20Shot%202016%2006%2028%20at%203.29.53%20pm.png%20%201303%C3%97572%20.png?dl=0

    – I’m trying to have a full width background imge
    – and a gradient attached to this particular class…

    any clues would be great thanks

    #654057

    Hi,

    We are very sorry for the delay. Please add this in the Quick CSS field in order to remove the margin on mobile view:

    @media only screen and (max-width: 767px) {
    #av_section_1 .flex_column_table.av-equal-height-column-flextable {
        margin-top: 0 !important;
    }
    }

    Note that you can apply a unique Section ID to the section containing the column then replace the selector “#av_section_1” with it.

    Regarding the second inquiry, those portfolio items are blank.

    http://dakwerkendrb.be/dakwerken/wp-admin/post.php?post=909&action=edit
    http://dakwerkendrb.be/dakwerken/wp-admin/post.php?post=326&action=edit

    Note that the “Voeg een Preview Tekst toe” will only work in the “ajax portfolio”.

    Best regards,
    Ismael

    #654055

    Hi,

    How I add Twitter Cards ( https://dev.twitter.com/cards/types/summary-large-image )
    on my code in Enfold ?

    This is still not going to work because the social share section has its own set of patterns. It can only share the post title and url. However, it’s possible to alter the pattern by using a filter. Example here: https://kriesi.at/support/topic/social-share-problems/#post-581487

    Best regards,
    Ismael

    Hey nep102,

    Thank you for using Enfold.

    I’m sorry but this seems to be not possible. Another user has a video background on a site but it’s an mp4 video. It’s possible to pause the video without showing the play button. https://kriesi.at/support/topic/problem-with-looping-video/#post-441912

    Best regards,
    Ismael

    #654046

    Hi,

    Please update the code:

    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() { ?>
    	<script type="text/javascript">
    	(function($){
    		var a = function() {
    			var ch = $('.container .av-content-small.units').height();
    			$('#top #main .sidebar ').css('height', ch);
    		}
    
    		a();
    	})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    #654035

    Hi,

    Issue 1:
    The size of the Related Products image are disproportionate to the page and the thumbnails need to be smaller.

    Have you tried to adjust the size of the Catalog Images thumbnail?

    Issue 2:
    The Related Products thumbnails are automatically placing on a dark strip background which looks really weird. How do we remove this background and place the thumbnails under the product description box.

    That is the default style of the related section. If you want to change the background color, please use this in the Quick CSS field:

    .single-product .alternate_color {
        background-color: #ffffff;
        border-top: 0;
    }

    Best regards,
    Ismael

    #654034

    Hi,

    Thank you for the info. Use the “ava_after_main_container” hook. Example:

    Enfold Woocommerce Change Shop Page

    Instead of is_shop, use the is_single conditional function and render the shortcode with the do_shortcode function. https://developer.wordpress.org/reference/functions/do_shortcode/

    Best regards,
    Ismael

    #654033

    Hey psstudiosinc,

    Thank you for using Enfold.

    1.) I’m sorry but you can’t group the items by category without major modification on the archive.php file. You have to duplicate the loop and create a new query which filter the items by category. Please hire a freelance developer or contact codeable: http://kriesi.at/contact

    2.) Please refer to this previous thread: https://kriesi.at/support/topic/style-of-single-menu-button-item-link-to-submenu/#post-639090

    Best regards,
    Ismael

    #654031

    Oh now it has updated, but why does the sidebar act the way it does? Shouldn’t it be at the top?

    Hi,

    It’s not highlighted or selected because the page “Career” has no relation or connection with the job posts. Please try this in the functions.php file:

    // custom script
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function h() {
    		var job = $('body').hasClass('single-job_listing'),
    			career = $('.menu-item-top-level-7');
    		if(job) career.addClass('current_page_item current-menu-item');
    	}
    
    	h();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    #654027

    Hi,

    The comments.php contains a pagination function by default. You have to enable the option “Break comments into pages with top level comments per page and the page displayed by default” in the Settings > Discussion panel.

    Best regards,
    Ismael

    #654025

    Hey goosedigital1,

    Thank you for using Enfold.

    We can either hide the caption or adjust the font size on smaller screens. Add something like this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .avia_transform .av_slideshow_full .avia-caption-title {
        font-size: 1em;
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-caption-content {
        font-size: 12px;
    }
    
    .slideshow_caption .slideshow_inner_caption {
        top: -40px;
    }
    }

    Best regards,
    Ismael

    #654024

    Hmm, hi Andy,
    There still seems to be an issue, even after updating my cell phone.

    The headline font I see while on a desktop computer is totally different than the headline font I see while looking on my cell phone. Other people are experiencing the same. I have an iPhone. Are you on an android? I’m wondering if the issue lies there and how to fix it.

    #654020

    Hi,

    Please try this code instead:

    // custom script
    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		$('#top .avia-logo-element-container .slide-image').each(function() {
    			$(this).attr('rel', 'nofollow');
    		});
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    repking
    Participant

    Support Team,

    Periodically, I get an ‘extra’ gray colored full width section that gets added to the top of the page, just below the header. I put the theme in debug mode and the extra section doesn’t appear that I can tell in the code. If I delete/clone sections in the advanced layout editor long enough, it sometimes somehow goes away on its own. I saw another post on the forum that was able to remove it by putting in code not to “display:none” the section in the CSS, but that seems like a hack to me and it doesn’t work with these pages, so wondering if something else is wrong or if there is a better solution.

    Thanks,
    Ron

    • This topic was modified 9 years, 8 months ago by Basilis.
    #653992
    Doron
    Participant

    two pages in a portfolio website I’m currently building work just fine in desktop view
    but all their page content completely disappear on mobile view
    (links to those pages is in the Private Content)

    I’m pretty sure I didn’t define any CSS (such as “@media only screen and (max-width…”) to cause this thing to happen and yet it happens
    how come only those two have this issue?
    most important – is there a way to find out whats causing this and fix it?

    • This topic was modified 9 years, 8 months ago by Doron.
    #653990

    Topic: Product-Slider in 404

    in forum Enfold
    Lilo
    Participant

    Hi,
    first of all I love Enfold and Thank you very much for all those great Updates!

    I want to use a shortcode to add a product-slider into my 404 Page

    I added this code into error404.php but it’s not working.

    do_shortcode(“[av_productslider categories='142,85,158,173' columns='3' items='9' offset='0' sort='0' autoplay='yes' interval='5' custom_class='']“);

    Can you help?
    Thanks a lot
    lilo

    #653989

    Hi Andy,

    sry, but that’s not correct! It DOES work before with Shortcodes in Codeblocks, but no matter -> realcode also does not seem to work after the upgrade…
    I did try the following code (very easy one):
    (see private)

    it just places two pictures of a Webcam into the Website, but it does not work. I used “body” as code wrapper element. And it just works fine previous versions…

    Another point, seems to be the same story:
    on the same page I use Icon Box and place a ShortCode into the TextBox of it:

    [metar loc="EDDK"]
    (hier klicken für Details)

    It also stopped working after upgrade…

    Thanks for a small thought on this.

    #653976

    In reply to: Tag page layout

    No worries. thanks

    any update on this ticket?

    #653971

    Hi,

    Sorry for the delay. It is possible to force the mobile menu in tablet or other custom screen size. Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    @media only screen and (max-width: 1024px) {
    nav.main_menu {display:none !important;}
    #advanced_menu_toggle, #advanced_menu_hide {
    	display:block !important; 
    	top:20px;
    	}
    }
    

    We would be glad to help you move the cart item to the end of the list, but at the moment there is no easy way to do this by using a small custom code snippet, instead try to move it to the bottom of the header. Please use the below css.

    .html_header_sidebar #menu-item-shop.cart_dropdown {
        width: 225px!important;
        right: auto!important;
        left: 0!important;
        position: fixed!important;
    }
    
    #menu-item-shop.cart_dropdown {
        right: 0!important;
        top: auto!important;
        bottom: 0!important;
    }
    

    Best regards,
    Vinay

    #653968

    In reply to: Mobile Header

    I add this code to the css and it fixed the header issue but now the header is covering the top of each page

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #header {
    position: fixed!important;
    }}

    #653963
    hypergolica
    Participant

    Dear Support:

    I’ve got the same problem outlined here: https://kriesi.at/support/topic/enfold-update-not-updating/

    I would have continued the thread, but it has been closed to further replies; no solution was given.

    When I go to the Enfold Child theme and look at “Theme Update” it says:

    No Updates available. You are running the latest version! (3.5.3)

    And when I click on check manually, it takes me to the multisite dashboard and tells me all themes are up to date.

    What should I do to fix this? Please advise.

    Thank you.

    Tim

    j0schi
    Participant

    Hi, i have the same problem as described in this thread:

    Link

    when I check the option “Display only breadcrumbs”, the title is gone but it leaves an empty h1 behind.

    Ismael stated:

    Should be added on the next update.
    
    Best regards,
    Ismael

    So when will this be fixed? As far as i kn ow it influences SEO

    • This topic was modified 9 years, 8 months ago by j0schi.
    #653946

    Hmmm.. no, still not working. The header widget is not showing at all now.

    I have this code in my Quick CSS field. Would that have something to say? The clock/widget is located to the right side, just below the logo/menu section/border.

    /* Header clock CSS */
    #header .widget {
    left: 91%;
    padding-top: 0px;
    position: absolute;
    top: 80%;
    padding-bottom: 0px;
    z-index: 1;
    }
    • This reply was modified 9 years, 8 months ago by Dbertelsen.
    CorrinaGB
    Participant

    Hi, I’m using the post-slider at the foot of my blogs. I only have three blogs published at the moment (brand new site) and so I’ve set the columns/blogs to display to two so that it’ll show the other two blogs at the foot of the post, but it’s re-showing the icon of the blog that’s just been read. How do I set it so the blog they’ve just read doesn’t show up in the post slider? Thanks.

    #653921

    Hello, it looks like you gave this other poster on this thread plenty of assistance. Again, I was initially asking how to begin the full-width instagram section.

    Here is the post which received tons of support before: https://kriesi.at/support/topic/instagram-widget-no-space-on-sides/

Viewing 30 results - 93,661 through 93,690 (of 142,818 total)