Viewing 30 results - 89,551 through 89,580 (of 142,843 total)
  • Author
    Search Results
  • #697637

    Hi Robi,

    Thanks for the feedback, much appreciated :-)

    Please let us know if you should need any further help on the topic.

    Thanks,
    Rikard

    #697634

    Hey Eileen,

    Loss of image data on background images is inevitable due to the difference in screen sizes, you could try to create another section to only show on mobile and upload an image better adapted to that size though. You can give your section unique IDs and then show/hide the correct one with CSS like this:

    @media only screen and (min-width: 768px) {
     #section-desktop {
    display:block !important;
    }
     #section-phone {
    display:none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
     #section-desktop {
    display:none !important;
    }
     #section-phone {
    display:block !important;
    }
    }

    Thanks,
    Rikard

    • This reply was modified 9 years, 5 months ago by Rikard.
    #697627

    In reply to: Read more problem

    Hi FlorianMeise,

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

    .html_elegant-blog .avia-content-slider .read-more-link {
        top: 0 !important;
    }

    Regards,
    Rikard

    Hey!

    Please add this css code to remove the grayscale filter on hover:

    #top .av-masonry-entry:hover .av-masonry-image-container {
        -webkit-filter: grayscale(0);
        -moz-filter: grayscale(0);
        -ms-filter: grayscale(0);
        filter: grayscale(0);
    }

    Best regards,
    Ismael

    mk
    Participant

    Hi,

    I have two issue that are hopefully easy to solve.

    Firstly, I’ve been trying to create an icon list in which the third list item is behaves as a button. I’ve almost managed to get it to where I want but I’m struggling to remove the black underline that appears as you hover over the link. You should be able to see what I’m talking about in the section just below the title section in the link provided.

    The second issue is that when I test the site in the Chrome developer tools, the iPhone 5 preview shows that my header (logo+menu) cover over the content in the top section. This is the only setting that I seem to have an issue with and I’m hoping there’s an easy solution?

    Thanks.

    #697598

    Hi,

    We added the following code in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
    }
    }

    This will force the cells to go on top of each other when the screen size is lower than 1024px or when viewing on tablet and phone screens.

    Best regards,
    Ismael

    #697596

    Hi,

    Please remove the link from the text and retain the title link. Add this code in the functions.php file.

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		var iconbox = $('.iconbox'),
    			boxlink = '';
    
    		iconbox.on('click', function() {
    			boxlink = $(this).find('.iconbox_content_title a').attr('href');
    			window.location.href = boxlink;
    		});	
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    And this in the Quick CSS field:

    #top .iconbox {
        cursor: pointer;
    }

    Best regards,
    Ismael

    #697591

    Hi,

    Please try the solution provided in the previous thread if you don’t want to use the translation plugin.

    // https://kriesi.at/support/topic/change-automated-response-subject-contact-form/#post-676775

    Best regards,
    Ismael

    #697590

    Hi,

    We added this code in the Quick CSS field:

    #sub_menu1 {
        top: 87px !important;
        position: fixed !important;
    }

    Best regards,
    Ismael

    #697589

    Hi,

    We included a patch for this specific issue in the latest version of the theme, 3.8. Please upgrade the theme to fix the masonry link issue.

    Related thread:

    // https://kriesi.at/support/topic/post-link-format-not-working-when-link-is-to-long/

    Best regards,
    Ismael

    #697588

    Hi,

    Please follow the instructions provided in the following thread. https://kriesi.at/support/topic/fullwidth-submenu-dropdown-doesnt-work-on-ipad/#post-617223

    Best regards,
    Ismael

    Hi,

    What are you trying to do specifically? Maybe you can use the “avf_builder_elements” filter. Example:

    // https://kriesi.at/support/topic/when-i-add-new-portfolio-ltems%EF%BC%8Chow-to-set-no-sidebar-in-defult%EF%BC%9F/#post-618972
    // https://kriesi.at/support/topic/change-default-header-layout/#post-682685

    Best regards,
    Ismael

    #697573
    ItsYeBoi
    Participant

    Hello,

    I am trying to create a masonry gallery for my blog page. However, the caption element which displays over top of the image only shows the date and not the title or excerpt because the font colour for the title and excerpt is white and so is the caption element background. I’ve tried changing the font colours in the alternate content under theme options which is what I’ve labeled the colour section in the advanced layout editor as. Unfortunately, it doesn’t seem to affect the font colour at all.

    This could not be the whole solution Ismael.
    First of all on top you mean under bordermod… replace the line with the other? or do you realy mean add the new line – no – this will end in two fixed_frame lines.

    i got now:

    bordermod	= html.is('.html_minimal_header') ? 0 : 1,
    fixed_frame	= $('.av-frame-top').length ? $('.av-frame-top').height() : 0,
    calc_margin	= function()

    and on line 1420ff

    if(scrolled + modifier > top_pos)
    {
    	if(!fixed)
    	{
    		this.css({top: modifier - bordermod + fixed_frame, position: 'fixed'}); fixed = true
    	}
    }

    look here : with “+ fixed_frame” i got a double distance
    if i change it to “- fixed_frame” the solution is good to small screens when fixed-frame is gone but on wide screens the submenu is not fixed !

    see private content

    • This reply was modified 9 years, 5 months ago by Guenni007.
    #697566
    LifeIsNow001
    Participant

    I didn’t make this site so its possible some CSS was edited to do this, I’m just not sure what was done. If you look at this blog post URL below (in the private area,) I have used the Advanced editor. It seems to not be formatted properly, the top part is hiding half under the menu.

    Also some of the normal things are missing
    There are no buttons to go to the next post/previous post

    Also, I’m not sure how to add the date posted (besides manually typing it in)

    Thanks

    #697560
    bearsnuggle
    Participant

    Hi there,

    Could you please help disabling the sticker header feature in tablet mode?

    By default, checking the “If checked header will stick to the top of your site if user scrolls down (ignored on smartphones)” box only disable it for smartphones but I would like to have it disabled as well for tablets.

    Thank you,
    Lisa

    vegaspro
    Participant

    Our page is set to the following:

    Template: Blank No Header / No Footer template is used?
    Sidebar Settings: No Sidebars
    Header Settings: Hide Header on this Page

    The reason we are using these settings is because we want to use the Advanced Page Builder to determine placement of the logo and content. (see link below). We do not want to add the logo in Enfold Settings because it creates a large margin of space and huge gaps on the top, left and right. Also if we do not set the template to Blank No Header / No Footer then the page shows a large invisible margin at the top (where the Enfold logo is designated to go).

    So the question is, how do we allow a Footer at least with this current setup?

    Pcarran83
    Participant

    Hello-
    I believe that I have tried every Quick CSS solution to change the background color of the alternating colors in the Pricing Table. I’d love it if all Default Rows were white background with same color text.

    Also, how do you vary the size of the text in the Pricing Row as shown in the Enfold Demo sample? It would be great to add “Early Bird Special” under the large price at the top.

    Thanks!

    #697506

    Topic: Header slider

    in forum Enfold
    rene-griebel
    Participant

    Hi everybody,

    is anyone able to tell me how I can re-add a slider next to the logo? After my latest updates to WordPress and Enfold theme, I am missing following code in the header area:

    <div class='container av-logo-container'><div class='inner-container'><div class='korona'></div><div class='slider'>
    <ul class='slider-banner'>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top01.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top02.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top03.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top04.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top05.jpg'></a></li>
    <li><a href=''><img src='/wp-content/uploads/2015/12/top06.jpg'></a></li>
    </ul></div>
    <script>
    window.start=start=function()
    {
    	setTimeout(function (){
    		t=document.querySelector('.slider-banner li:nth-child(1)');
    		t.style.opacity=0;
    		setTimeout(function (){
    			t=document.querySelector('.slider-banner li:nth-child(1)');
    			document.querySelector('.slider-banner').appendChild(t);
    			t.removeAttribute('style');
    			start();
    		},5000);
    	},5000);
    
    }
    start();
    
    </script>

    Best regards
    Rene

    #697485

    Hi,

    use this inside your Farsi page:

    #top .av_header_transparency #header_meta li {
    left: 27%;
    }
    

    Best regards,
    Andy

    #697484
    romano2
    Participant

    Hello
    I’m using a video background in a color section. There is a testimonial block in the color section.
    My problem is just with smaller resolutions, then the testimonial block takes more height, and the video don’t cover anymore the color section. I can see the color background at top and bottom of the video background, not nice.
    Is there a way to have this video background like in css : “position-size:contain” to cover all the color section ?
    Thanx !

    #697474

    Hi!

    Please add following code to Quick CSS as well and adjust as needed

    #text-29 ins.adsbygoogle {
        padding-top: 50px;
    }

    Best regards,
    Yigit

    #697472

    Yes, Yigit! As the dots were showing suddenly and adding additional space on top of the ad widget. :)

    I changed it to your CSS and it all looks way better with the exception of the ad widget that is inside of the two-column piece at the bottom (ad to the left and More stunning wedding ideas to the right – the 3 related articles)

    How can I add a little padding on top of it?

    Warmly,

    Havi

    #697469

    Hi!

    You are welcome :)
    You made those changes not to display the dots, is that correct? If so, you can simply use following code instead

    #top #wrap_all ins::before { display: none; }

    Best regards,
    Yigit

    #697463

    Thank you, Yigit!! It worked!! Is there anything on the code I added that you see as incorrect or maybe should be moved to modify adsbygoogle only?

    /*fix woocommerce padding on adsense*/
    #top #wrap_all ins::before {
    content: “\2219”;
    text-decoration: none;
    display: inline-block;
    padding: 0px 0 0 0px; /*here I changed it*/
    font-size: 0px; /*here I changed it*/
    line-height: 12px;
    }

    #697455

    Hey!

    Please add following code to Quick CSS as well

    #top .pagination .current, #top .pagination a, #top .fullsize .template-blog .pagination a {
        box-shadow: 0px 0px 1px 0px black;
    }

    Best regards,
    Yigit

    #697450

    In reply to: video slide size

    #697447

    Thanks for the description, Yigit.

    Right now I have chosen not to display the title in the title bar, because I don’t like the design of it. For example I want some pages to have an image to the right and the Page Title to the right of that image. Or I want a large centered Title in the top of the page. (See links in Private Content area). I am using the Avia Layout Builder.

    So are you saying, that doing it that way I then have two H1’s, which I guess is not good for SEO?

    Is there any way I can then show the pre-entered title in the kind of design I want?

    #697446
    AnnemarieDoolin
    Participant

    Hej guys… already searched for another topic without luck.

    When I set up a product category and set the thumbnail, it actually shows up at the top of the product category page itself in cropped form (see image with purple highlight)

    Product category page with thumbnail as banner

    1. When I set up the product category, I tried altering “Display Type” (next to thumbail upload) to every type but nothing made a difference.
    2. WooCommerce Settings / Display / Default Category Display – Set to “Show Products”

    Can I use some of your genius advice please :-)

    #697428

    In reply to: Image in menu

    Hi,
    I’m searching another method more simple :)
    So I deleted my image menu item and I’m trying to add a background: url(“”) to my sub-menu.

    But I still have a problem when I add this :
    .avia_mega_div.avia_mega1 {
    background:url(“/imgs/menu1.jpg”) no-repeat right top;
    }

    I can’t see my picture ;(

    Thank you for helping :)

Viewing 30 results - 89,551 through 89,580 (of 142,843 total)