Viewing 30 results - 102,121 through 102,150 (of 142,941 total)
  • Author
    Search Results
  • #566749

    Yes thank you! Topic solved!

    #566735

    Hi,

    Great, glad you got it fixed and thanks for sharing the solution. Please let us know if you should need any more help on the topic.

    Best regards,
    Rikard

    #566733

    Hi,

    It looks like you have a lot of white space on the top of that image? Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Regards,
    Rikard

    #566728

    Hi,

    Glad we could help, please let us know if you should need any more help on the topic.

    Thanks,
    Rikard

    #566711

    In reply to: Title bar as a divider

    Hi,

    Please try adding this to Quick CSS and adjust the values to your liking:

    #top .title_container .container {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        min-height: 56px !important;
    }
    

    You can upload screenshots to services like imgur.com or similar and then link to them here.

    Best regards,
    Rikard

    #566701

    Yeah that’s what they’re set at. Here’s what it’s looking like. There’s also artifacts at the top… How do I send a screenshot on here?

    #566696

    In reply to: Heading Logo

    Hi Gary!

    Your trying to change the logo for a certain page? If so then try this out, https://kriesi.at/support/topic/custom-logo-for-specific-page/.

    Best regards,
    Elliott

    #566694

    In reply to: Drop Down Menu

    Hi Elliott,

    Sorry the site is not live. But I included screenshots in the private data field.

    1. If this can not be accomplished what would you recommend for a clean look that wouldn’t look odd since there is only 1 drop down.

    2. If I want to get rid of the outline and shadow, how do I do that? currently I have in the Quick CSS the following but it isn’t working:
    #top .sub_menu li ul {
    border: none;
    box-shadow: none;
    }

    Thank you

    Z

    #566687

    Hello – the website is working. See links in private window – nothings changed.

    To clarify, the slideshows should show behind the logo and menu on a desktop view but on the mobile its fine for it to be below it as it currently is. I look forward to a resolve at your earliest convenience.

    #566679

    Hi Unjordi!

    When you edit the page click on the color section at the top and change it’s background.

    Best regards,
    Elliott

    #566676

    Hey pegasso4444!

    You can use @font-face to use custom fonts. Here is a guide on how to get the fonts to be viewable in the Enfold style settings, https://kriesi.at/support/topic/installing-own-fonts/#post-421325.

    Cheers!
    Elliott

    #566674

    Hi natashacs!

    You have them all unchecked in “Screen Options”. When you edit the page click on “Screen Options” in the top right hand corner and check them all to display.

    Cheers!
    Elliott

    #566668

    Hey!

    Please ref to this post as mentioned by Ismael https://kriesi.at/support/topic/play-a-video-from-youtube-in-layer-slider/#post-449810

    You can generate the video shortcode on a temporary post or page by using the shortcode wand. Copy it to one of the layer in the slider. You may not be able to see the video in the slider preview but it should work in the front end.

    Hope this helps!

    Cheers!
    Vinay

    #566638

    Topic: Logo problem

    in forum Enfold
    MetalX2
    Participant

    i have alot of links on my page at the top. but on certain resolutions they run into the logo. How do I fix that?

    #566636

    thanks for you reply. with the code you suggested the effect that should appear on hover (desktop) or when you tap (mobile-android) appears right away on iOS (iPhone, iPad ). Meaning as soon as page loads color overlay and text (in my case) is on top of the image. This effect should be visible only when you tap on the image and it should load up together with the image. Any suggestions? Thanks again

    #566604
    dk210se
    Participant

    hi,

    I have some question (I’m using the very last version of Enfold and RTL):

    1. Accordion slider doesn’t work on some mobile devices (like Galaxi 3, s3)
    in old version of Enfold it’s working.

    2. the dark background is too wide on desktop (on mobile it’s fine), how can I narrow it ?
    picture:
    http://goo.gl/9Nidyz

    3. the hovering on the last menu item is different from the rest (the background is narrower and the line beneath is wider).

    4. there is a RTL problem with the lightbox – the text might be in the right site:
    http://goo.gl/Dkxy7N

    thanks

    #566594

    In reply to: erroneous question

    Hey mocablue!

    Would appreciate not to delete the post titles, as those topics with the solution help us with the search results!

    Thanks a lot for your time and ofc for using enfold.

    Regards,
    Basilis

    Cenabarato
    Participant

    Hi,

    I add to my page a HTML Code for Facebook Like button. It’s work right but when you click in Likebutton it’s show a Modal Popup and it’s dont show correctly
    The Avia editor mixes with Facebook popup in the desktop version.
    In the mobile version of Facebook popup is displayed above the right page.

    They can help with the desktop version?

    thanks
    Regards

    Okay, I just managed a fix. I think this is a little bug in Enfold so I suggest to fix it in a further release :)

    # Override avia management of thumbnails.
    # See : https://kriesi.at/support/topic/woocommerce-cayalog-page/
    # See : https://kriesi.at/support/topic/woocommerce-archive-page-default-product-placeholder-not-showing/
    add_action( 'after_setup_theme', 'enfold_woocommerce_child_theme_override' );
    function enfold_woocommerce_child_theme_override()
    {
    	remove_action( 'woocommerce_before_shop_loop_item_title', 'avia_woocommerce_thumbnail', 10);
    	add_action( 'woocommerce_before_shop_loop_item_title', 'avia_woocommerce_thumbnail_child_theme', 10);
    
    	function avia_woocommerce_thumbnail_child_theme($asdf)
    	{
    		global $product, $avia_config;
    		$rating = $product->get_rating_html(); //get rating
    
    		$id = get_the_ID();
    		$size = 'shop_catalog';
    		
    		$gallery_thumbnail = avia_woocommerce_gallery_first_thumbnail( $id , $size);
    		$post_thumbnail = get_the_post_thumbnail( $id , $size );
    		
    		// Get the default WC thumbnail if empty.
    		$post_thumbnail = empty($gallery_thumbnail) && empty($post_thumbnail) ? 
    			$post_thumbnail = wc_placeholder_img(): $post_thumbnail;
    
    		echo "<div class='thumbnail_container'>";
    			echo $gallery_thumbnail;
    			echo $post_thumbnail;
    			if(!empty($rating)) echo "<span class='rating_container'>".$rating."</span>";
    			if($product->product_type == 'simple') echo "<span class='cart-loading'></span>";
    		echo "</div>";
    	}
    }

    Works fine now, yeah!

    #566572
    mirtao64
    Participant

    Hello,

    I’m trying to replicate the same behaviour of the main menu in my sub-menus..I’d like to have sub-menu items red underlined when I pass hover with mouse and color changed when clicked and active.

    This way I always know the pages where I stand-by without having to add breadcrumbs (since I have a top banner the visibility area with breadcrumbs would be too narrow).

    Any suggestions ?

    Hope to have been clear :)

    Thanks a lot,
    Mauro

    #566559

    Hey!

    Posting again on a topic, does bring it to the bottom of the line.
    To assist you better, we will need to check your web site and also show us with a screenshot, which area you want to change or you are not satisfied.

    Thanks a lot for your time and patience

    Best regards,
    Basilis

    #566548

    In reply to: Text below logo

    Thanks for your reply!

    The following custom css code leads to the solution, that the text is below the logo:

    /* General Custom CSS */
    
    #header .widget {
      left: 0;
      position: absolute;
      top: 0;
    }

    But unfortunately there are some issues maybe based on the length of the text, which is longer then the width of the logo. When I am decreasing the window size, then the menu entries superimpose on the text, and when the mobile menu appears then the text is cropped.

    Can I handle these issues within the #header .widget css or do I have to adapt the logo css, and in which way do I have to do this?

    Thank you again!

    • This reply was modified 10 years, 3 months ago by Ph_Bl.
    #566532
    amrman0
    Participant

    Hi, I would you like to make my website multilingual, so I want to add a languages bar in the header area (a bar with flag images and link them to different URLs when clicked), and I’m not going to use a plugin like WPML. I searched the archives to learn how I can add such bar, and found a post by Yigit in which he instructed that we should add code to the header.php file (and a couple of custom CSS lines) https://kriesi.at/support/topic/how-do-i-get-a-language-flag-on-the-top-above-the-search-bar/
    The problem is, and I may be wrong, if we add any code to the header.php file, it will be erased with the first theme update. I’m using a child theme, but there is no header.php file in the child theme. So my question is, how can I add a flags bar to the header without it getting erased with the first theme update. Or let me know if there is any other solution, other than the one in the above link, for adding a flags bar to the header, thanks.

    #566526

    hi,

    thanks….. i have checked my site on mobile and tablate there are some issue…

    on mobile screen shopping cart basket is apear, i dont want to appear cart basket on any screen, desktop, tablate or smart phones…

    please guide me how i will fix it…

    “http://www.filemban.com/wp/”

    thanks in advance.

    #566512
    leoadmin
    Participant

    Hello together,

    I’ve got a problem. My website looks fine in Desktop version, but awful in mobile version.
    The reason for this is, that I often use layout elements with 10% padding-left and 10% padding-right. The Desktop version works perfectly, but on the mobile version that’s too much wasted space.

    Is it somehow possible to set the padding on mobile version everywhere to 0%?

    Thanks in advance,
    Leo

    webmarka
    Participant

    While product default placeholder is displaying fine in all other views (single, cart, recent products, etc.), it doesn’t show in the archive view.
    The problem seems to be related with one of the last Enfold updates.
    If I switch to another theme like TwentyFifteen, default placeholders are showing fine.
    But with Enfold or my child theme, placeholders don’t show (there is no output where the image is supposed to be displayed).
    I already tried this solution but it doesn’t work : https://kriesi.at/support/topic/woocommerce-product-without-a-product-image/

    Enfold : 3.4.7
    Child theme : yes
    WordPress : 4.4.1

    Thanks for your help!

    #566506
    michael_world2cycle
    Participant

    Dear reader,
    I would like to use the following social incons in the footer of every page and post.
    I went to the Enfold settings and have selected the box Social Icons underneath the topic FOOTER.

    Futhermore I have enter my social profiles unterneath the topic YOUR SOCIAL PROFILES.

    Now I am using a plugin to have social icons displayed but I prefer the one available within the theme Enfold.
    But as an example please see my current icons and let me know if it’s possible to have to icons displayed as shown.

    Side not, does have Enfold the possiblity to have the incons set in the footer the following;
    Email (contact us), Facebook, Instagram, You Tube

    Thanks :-)

    #566505

    Thanks you can close this topic.

    #566503

    In reply to: Site Fonts

    Thanks you can close this topic.

    #566502

    Thanks you can close this topic.

Viewing 30 results - 102,121 through 102,150 (of 142,941 total)