Viewing 30 results - 80,791 through 80,820 (of 142,856 total)
  • Author
    Search Results
  • #783539

    Hey Carlos,

    For the menu, if you’d like the lines between the menu items, use this instead of the code that I gave you:

    .html_header_sidebar #header .av-main-nav {  border-bottom: 1px solid #00b3ff; }
    .html_header_sidebar #header .av-main-nav > li {margin: 0 !important; padding: 0 39px !important; border-top: 1px solid #00b3ff; }
    .html_header_sidebar #header .av-main-nav > li:hover {background-color:#00b3ff;}
    

    If you’d like the hover animation where the text and background moves, that’s also possible but would require some custom CSS to make it happen. You can look for code that does that, or hire someone to help you.

    Best regards,
    Sarah

    #783534

    Hi,

    Let’s adjust the function, so that it works like that only on mobile, and then we see what else we can do

    
    function av_move_search_mobile(){
    ?>
     <script>
    jQuery(window).load(function(){
    	if (jQuery.avia_utilities.isMobile) {
    		jQuery("li#menu-item-search a").detach().css({"height": "auto", "line-height": "initial"}).appendTo('#top-line .container');
    	}
    });
     </script>
    <?php
    }
    

    Best regards,
    Victoria

    #783532

    I am having the same problem and am interested in a solution. Thank you.

    In my case is worth mentioning that I have applied following patch: https://kriesi.at/support/topic/woocommerce-3-0-03-0-1-and-the-images-issue/#post-783395

    • This reply was modified 8 years, 11 months ago by vladbejenaru.
    #783509

    @fabimenses please update to the latest version of enfold (4.0.5), of woocommerce (3.0.4) and follow this instructions.

    #783490

    Hi Christian,

    Unfortunately, the columns that you have are not like tables, where you can vertically align their contents automatically. The elements are stacked on top of each other, and respond to the browser’s size. I think the best you can do is adjust the text descriptions so that they display in a similar length. This is why I suggested the line break so that the paragraphs have equal number of lines. (But the number of lines might also change as the browser gets smaller!)

    I suppose you can also got to Enfold > General Styling > Quick CSS to set the minimum height of the text blocks in the first two columns like this:

    .avia-builder-el-41 .avia_textblock p, .avia-builder-el-49 .avia_textblock p {min-height:164px;}

    But, again, the alignment may break depending on the screen size, anyway.

    I hope my explanation is clear and helpful. Please do let us know if you need clarification. 

    Best regards,
    Sarah

    #783482

    Hi Nikko,

    thanks very much for your help, now the menu is working well. Laptop/Tablet/Small Tablet menu is now perfect.
    There is still something to fix. I attach some pictures as reference, here are the link to view the images:

    https://ibb.co/noDuO5
    https://ibb.co/gYP135
    https://ibb.co/ffyTi5
    https://ibb.co/dPa8i5
    https://ibb.co/kysXAk
    https://ibb.co/nQF8i5

    As you can see, when using the mobile, there is the Woocommerce cart button which partially covers our company logo.
    How can I make sure the logo fits well with this botton? (In case it’s not possible, how to disable to button in the mobile version?)

    best regards :)

    Alberto

    #783464

    Hi mbellush,

    Please refer to this reply: https://kriesi.at/support/topic/video-embed-shortcode/#post-47188.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #783450

    Hi Anni0758g,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .post-entry-38 .image-overlay.overlay-type-extern {
      min-width: 115% !important;
      min-height: 110% !important;
      margin-left: -8px;
      margin-top: -11px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #783439

    Thanks Rikard but this didn’t work either. Tried these too:-

    .postid-5527 #header_main_alternate {
    display: none!important;
    }
    .postid-5527 #header_main {
    margin-bottom: 0;
    display: none!important;
    }

    .postid-5527 #header {
    display: none !important;
    }
    .postid-5527 #main {
    padding-top: 0px !important;
    }

    #783435

    Hi, could you tell me when may I expect help in this topic, please?
    Thanks in advance,
    Monika

    #783433

    In reply to: topbar colour

    This solution does not work. With this code the site started to display content max width 767px on each device and problem with not visible topbar remained.
    Regards,
    Monika

    #783432

    Hi,

    Glad 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

    #783429

    Hi,

    Great, glad you got it working and thanks for the feedback. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

    #783384

    In reply to: Icon List Styling

    Hi,

    What you can do is keep the default big list, then adjust the size in Quick CSS.

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .avia-icon-list .iconlist_icon {
       height: 54px !important;
       width: 54px !important;
       line-height: 54px !important;
       font-size: 30px;
    }
    
    .avia-icon-list .iconlist_title { 
       margin-top:8px !important;
    }
    

    You can adjust the values according to your preference.

    Best regards,
    Sarah

    #783379

    Hi artisforever,

    Here is the code you can put in your child theme styles.css to change the color of the invisible header:

    
    #top #wrap_all .all_colors h2 {
        color: #666666;
    }
    

    On which page do you have the problem with the slider?

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #783369

    Hey MORTULGAAH,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 989px) and (min-width: 768px) {
    	#menu-item-shop.cart_dropdown {
        	right: 52%;
    	}
    }
    
    @media only screen and (max-width: 767px) {
    	.responsive #top .logo {
    		width: 65%;
    	}
    
    	.responsive #top #menu-item-shop.cart_dropdown {
    	    right: 10%;
    	    color: #000;
    	}
    }
    

    Please don’t forget to flush caches after making changes.

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #783364

    Sure, please see below.

    The issue is that the text layers and teaser on the right (on the home site) http://realit.ch/ don’t adapt to screen size. For example I can’t fully see them on my lap top but on a bigger computer they’re fine.

    Thanks for checking.

    Kind regards
    Aline

    #783361

    Hey sailentpooN,

    Reviews and sidebar are settings that can be configured in WooCommerce.
    Please refer to this thread for a possible solution for blurred images.

    You need to add the currency switcher to the header as a widget. Here is hoe to do it

    You can hide the flag in WPML settings or by adding this code to Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css

    .av-language-switch-item { display: none;}

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #783357

    Hello,

    I changed theme on WordPress, deactivated all plugins and remain the same problem. I reinstalled last edition of WordPress, deactivated all plugins(2 plugins where installed with default WordPress edition) and install a free theme and remain the same problem.

    Why when you upload a image, created on uploads folder on server many images with different dimensions and that increase your capacity on your site with extra MB. That make your site slower.

    e.g. I uploaded on my site a image(Laptop.jpg) with size 103KB and on server folder i see many images(Laptop.jpg) with total size (354KB). Why?

    Thank you

    #783354

    Hey alyceburnett,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #text-8 {
      padding-top: 0;
    }
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #783348

    Hi!

    Here is how you could adjust your category page http://kriesi.at/documentation/enfold/change-archive-categorytag-blog-style/, it’s the page you get to when from your sidebar widget.

    Here is more on meta title
    https://kriesi.at/support/topic/hometage-title-meta-tags/
    https://kriesi.at/support/topic/meta-title/

    If you need further assistance please let us know.
    Regards,
    Victoria

    paullindqvist
    Participant

    Hi!

    I have a two questions regarding blog posts.

    1. I’v set a featured image on my blog posts and it’s visible on the blog page (where all post are listed) but once you click on the post the featured image isn’t shown at the top ? How can i enable this ?

    2. I can’t seem to be able commenting on my posts ? I’v checked the settings/discussion and enabled it there, and also checked the “allow comments” for each posts. What have i missed ?

    Thank you

    Website located here

    #783337

    Thank you very much, thats it!

    One more question please: I put on top of my page a slide show (full width). The slideshow is under the menu now. Is it possible to let it begin after the top-menu?

    @beardbros please update enfold to the latest version 4.0.5 and read this post

    #783322

    Topic: topbar colour

    in forum Enfold
    MWCBT
    Participant

    Hi,
    I have another question re the closed discussion:
    https://kriesi.at/support/topic/link-color-in-topbar-transparent-header/#post-782424
    The text and link colour in topbar is OK now on desktops, laptops, but on mobile and tablets the whole topbar is now not visible (on my home and 404 pages where I use transparent header). The topbar text there is all white as it should be, but on mobile devices the transparency does not work, so the topbar text is not visible.
    Could you help me, please?
    Monika

    #783319

    Hi Nick,

    Sorry for late response and missing this thread. Try changing your code from:

    #top .rtr-column-link:hover  {
      background-color: #000;
      transition: all 0.3s ease-in-out;
      opacity: 0.5;
    }

    to:

    #top .rtr-column-link {
        transition: all 0.3s ease-in-out !important;
    }
    
    #top .rtr-column-link:hover {
        background-color: #000 !important;
        opacity: 1 !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #783306

    Topic: Update problems

    in forum Enfold
    avivitgolanschutz
    Participant

    HI There,
    Getting this one on wordpress admin in my site. It stops the normal flow of updates of pages and posts and also other admin screens.

    cURL error 28: Connection timed out after 10001 millisecondscURL error 28: Connection timed out after 10001 millisecondscURL error 28: Connection timed out after 10000 millisecondscURL error 28: Connection timed

    The posts are updated but the display of the updated page is not shown
    Can you check please?
    Best regards
    Avivit

    #783299

    Hey!

    Thank you for the update. I was able to reproduce the issue and it seems to be related to the following thread.

    // https://kriesi.at/support/topic/tab-section-with-images-bug-report/

    We’ll report the issue to our developers. Please wait for their response.

    Cheers!
    Ismael

    #783277

    Hi,

    Great, thanks for the feedback. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    Hey!

    It seems this post should have had a quick response, 3 days later you asking me for credentials again.

    I didn’t ask for login credentials. I just get redirected to the maintenance page after logging in. Please review my response.

    // https://kriesi.at/support/topic/page-sidebar-navigation-show-parent-child-grandchild/#post-781016

    Are you purposely sending me in circles?

    Again, I can’t login to the site properly until today. I’m not sure why I got redirected to the maintenance page before. Anyway, we added this filter in the functions.php file.

    add_filter('avia_sidebar_menu_display_child', 'avia_sidebar_menu_display_child_mod', 10);
    function avia_sidebar_menu_display_child_mod($display) {
    	$display = '';
    	return $display;
    }
    

    It will display the child pages of the page sidebar navigation. ( see private field )

    Regards,
    Ismael

Viewing 30 results - 80,791 through 80,820 (of 142,856 total)