Viewing 30 results - 96,961 through 96,990 (of 142,730 total)
  • Author
    Search Results
  • #618141

    In reply to: Fontello icons failing

    #618137

    Hi,

    I think I found the troublemaker, it is WooCommerce Germanized I asked there for a soultion as well.

    But maybe you now an answer as well.

    Thanks for helping and sorry, I could not accomplish yet to setup access to the backend.

    Tom

    #618127

    Hey!

    thank you! please check out this thread: https://kriesi.at/support/topic/please-contribute-and-translate-enfold/

    Cheers!
    Andy

    #618125

    Hey!

    what did you do so it stopped working?

    If you use this http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/ then it will work for body (content font) and header (heading font).

    Which font exactly do you want to use?

    Cheers!
    Andy

    #618123
    elenapoliti
    Participant

    Hello, I wish to add via “area widget” element the categories on top of my grid listed articles in the home page, where I have blog categories. Now by default the widget area displays the categories as a list. I wish to customize it in order to have the list items shown horizontal instead of vertical and with a background color, like a series of tabs.

    I tried to modify the style.css in the child theme but it seems not working. Could you please help me?

    Thank you!

    elena

    • This topic was modified 9 years, 10 months ago by elenapoliti.
    #618105

    Hi!

    add page-id to call the pages in question only:

    @media only screen 
      and (min-width: 768px) 
      and (max-width: 1024px) {
    .page-id-376 .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    display: block;
    width: 100%;
    }}
    
    @media only screen 
      and (min-width: 768px) 
      and (max-width: 1024px) {
    .page-id-374 .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
    display: block;
    width: 100%;
    }}
    

    Cheers!
    Andy

    Hi!

    Please replace the above code with this

    function removeScrollToTop(){
    ?>
    <script>
         jQuery(document).scroll(function() {     
            jQuery("#advanced_menu_toggle").removeAttr("href");     
            jQuery("#advanced_menu_hide").removeAttr("href");        
        });
    </script>
    <?php
    }
    add_action('wp_head', 'removeScrollToTop');

    If there is any issue please provide us admin details so we can take a closer look at it.

    Cheers!
    Vinay

    #618076

    Ok we decided to go another way, because the customer wants another solution. So you can close this topic. Thanks for your help!

    #618072

    Hi!

    Thank you for the info.

    1.) Use this to hide the layer slider navigation:

    @media only screen and (max-width: 767px) {
    #top .avia-layerslider .ls-nav-prev, #top .avia-layerslider .ls-nav-next {
        display: none !important;
    }
    }

    2.) And use this for the border:

    
    .home #layer_slider_1 {
        border-top: 2px solid #45273E!important;
    }

    Best regards,
    Ismael

    #618067

    Hi,

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

    Regards,
    Rikard

    #618066
    Erwin
    Participant

    Hi,

    Since yesterday there are suddenly strange paddings on my website, see the url in the private section. I have a black bar at the top of the screen, this wasn’t there before. And the video’s, streamed from vimeo, shows a big top and bottom-padding.

    I’ve tried to update enfold, but this doesn’t change anything, I’m now back at an older version. WordPress doesn’t update automatically, so I don’t know how this could change all of a sudden.

    Do you have any suggestions for me?

    Regards,

    Erwin

    #618065

    Got it. Thanks. )

    No reason to keep this topic open any more.

    #618052
    Marsha
    Participant

    Hi,

    I would like the news headlines in the Latest News post widget to be the same font family as the headlines that display in other elements in the selected webfont. Can you please help me with the CSS to make the adjustment. I have already added the following Quick CSS to increase the font size of the headlines…

    #top .news-content {
    font-size: 12px;
    }

    Thanks in advance for your assistance.

    Cheers,
    Marsha

    #618024

    Hi Vinnie, no I left the main Enfold theme live so you could see the issue with the small menu hiding to the right of the page when you scroll side ways on the page. As mentioned the menu using the same CSS doesn’t work on child theme, I will now change it over to the child so you can see so please revisit the domain i sent you earlier. As I mentioned the menu looks fine however if you look closely the page will be wider than the screen your looking at it on and you will see a small version of the explanded menu hiding off to the right of the screen as per my screen shot. I have copied all the settings identical to the child theme with the menu not showing as mobile at all on desktops

    #618004

    Hi!

    Add this in the QuicK CSS field:

    .avia_sidebar_banner {
        position: fixed;
        left: 50px;
        top: 50px;
        z-index: 1000;
    }

    And the following code in the functions.php file:

    // banner
    add_action( 'wp_footer', 'ava_custom_script_banner', 50);
    function ava_custom_script_banner() {
    	?>
    	<script type="text/javascript">
    	(function($){
            function b() {
                 $('#wrap_all').prepend('<div class="avia_sidebar_banner"><a href="LINK HERE"><img src="http://www.greenenergyvolleys.de/wp-content/uploads/2016/04/testbanner.jpg"></a></div>');
            }
    
            b();
    	})(jQuery);
    	</script>
    	<?php
    }

    Cheers!
    Ismael

    goldengate415
    Participant

    Hi-
    I have noticed that the header for my site looks different in private browsing mode on mobile (ios, iPhone using Safari). Often the little icons at the top for pinterest etc just show empty boxes… and the menu hamburger box also is empty, but still functions.

    Here’s a screen shot with an example:
    screenshot on iphone 6s using safari

    It looks fine in “normal, non private browsing mode” and also looks fine in Chrome mobile browser in incognito mode.
    Any idea what would be messing up the rendering? Has anyone run into this before?
    Here’s a link to a sample blog article for your reference so you can replicate… sorry if it makes you hungry ha ha!
    http://www.thomashenthorne.com/le-comptoir-san-rafael/

    #617980
    jomtones
    Participant

    I’ve made the mobile header fixed so that the menu is accessible at all times. This works fine – however, when you tap to activate the menu, the current page behind the menu instantly scrolls back to the top.

    How can I stop this happening?

    Thanks!

    • This topic was modified 9 years, 10 months ago by jomtones.
    #617976
    bobfurgo
    Participant

    Hello! I have a grid row with the css below:

    #fixednavigation2 {
      position: fixed !important;
      top: 40px !important;
      z-index: 3 !important;
      border-bottom: 1px solid #dadedf !important;
    }

    This is my main navigation for the site. It was working great until just today, the links seem to be “clickable” below the link rather than on the link. Do you have any idea why this is happening? Note that once you scroll down the page a bit the links work properly.

    #617975

    Hi tashi-11!

    Thanks for getting in touch with us!

    The best option would be to upload an image size that will be the full width of the desktop and set the width and height to 100% in the layer slider settings. This will resize the image accordingly when the screen gets smaller and have the image looking stretched on desktop or larger screens.

    Let me know how it goes.

    Cheers!
    Jordan

    #617954

    Thanks Yigit. You got me going in the right direction. In order to get it to work on the iPad I needed to nudge the caption up too:

    @media only screen and (min-width: 767px) and (max-width: 1023px) {
    #top .avia-slideshow-button { margin-top: -50px !important; }}

    @media only screen and (min-width: 767px) and (max-width: 1023px) {
    #top .avia-caption-content { margin-top: -25px !important; }}

    Hey minogig!

    I went to Appearance > Menus and clicked “Screen options” on the top right corner and checked “Categorie prodotto”. Please review your website now

    Cheers!
    Yigit

    #617869

    In reply to: Comments

    Hi RPM!

    If you are using Advanced Layout Builder to create your posts, please add comments element to the bottom of your page under Content elements tab of ALB.
    If that does not help, please edit your post and click “screen options” on the top right corner and check “discussion” and scroll below your post and make sure that you have enabled discussion

    Cheers!
    Yigit

    #617850

    Hey!

    Can you please add following code to Quick CSS as well

    .responsive #header { position: fixed; top: 0; width: 100%; }

    If that too does not help, please hire a freelance developer or request such feature here – https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Yigit

    ok looks good to go. I created a new API key so it should update. I just cross my fingers the issue doesn’t happen again.
    there used to be my phone number right under the social media icons. I tried doing what you said but I dont like it at the top right bar.
    either way, I am happy the site is back up and running.

    are there any major updates that you think I should be aware of with the newest enfold?

    Thanks again
    Ari

    #617845

    Hi!

    Please edit your page and click “screen options” button the top right corner and check “discussion and scroll below your content and make sure to enable discussion

    Cheers!
    Yigit

    Hey Peter!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #top .main_color .avia_cart_buttons .button span {
        color: #d82a2d;
    }
    #top .main_color .avia_cart_buttons .button {
        color: transparent;
    }
    ul.products li { overflow: hidden; }

    Regards,
    Yigit

    #617839

    Got it. Thank you for that, didn’t see that option.

    I do have a question though, I have the boxed layout set to 2000px:

    @media only screen and (max-width:  2000px) and (min-width: 768px) {
    .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header, .responsive.html_boxed.html_header_transparency #top #header {
        max-width: 100%;}
    }

    but for some reason it still looks like certain elements are stretching past the 2000px mark on desktop when you maximize the screen, see link below. How can I make it so that all elements are contained within the specified width?

    Yigit

    Thanks for fixing the site. It was stressing me out and now it looks all good. This issue has happened in the past. Moving forward, how can I make sure this problem doesn’t come up again when the next update comes out? It is the update with wordpress or with enfold? One of you guys told me to install the plug in Transient cleaner which I did. What settings should I put that at? Is that what will ave me from all this hassle?

    Also, in a previous version of enfold, I was able to add my phone number on the front top header under the social media icons. Now they have disappeared. You have any idea where the phone number went to and how I can get it back?

    Thanks!
    Ari

    #617799
    bobfurgo
    Participant

    Hello! I was wondering if someone could help me with the hover on this custom button. Currently, when you hover over it, only the outline changes color. Does anyone know how to alter the css so that when you hover over the button the entire color of the button ( both the outline as well as the body ) changes on hover? Any input is appreciated :)

    .livesite {
      margin-right: 10px !important;
      padding: 12px 40px;
      font-size: 10px;
      font-family: lato;
      letter-spacing: 1px;
      border-radius: 70px;
      display: inline-block;
      vertical-align: middle;
      text-decoration: none !important;
      position: relative;
      background: #a87a34;
      color: #ffffff !important;
     -webkit-transform: translateZ(0);
      transform: translateZ(0);
      box-shadow: 0 0 1px rgba(0, 0, 0, 0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -moz-osx-font-smoothing: grayscale;
      -webkit-transition-property: color;
      transition-property: color;
      -webkit-transition-duration: 0.3s;
      transition-duration: 0.3s;
    }
    .livesite:before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: #a87a34;
      border-radius: 50px;
      text-decoration: none;  
      position: relative;
    }
    .livesite:before {
      content: '';
      position: absolute;
      border: solid white 2px;
      top: 2px;
      left: 2px;
      right: 2px;
      bottom: 2px;
      opacity: 1;
    }
    .livesite:hover {
      background: #393939 !important;
    }
    #617783

    Topic: Avia Widget Deprecated

    in forum Enfold
    sawyerbullock
    Participant

    Hi there,
    I realize you guys have been answering dozens of questions like this on other posts, but I have updated my wordpress, enfold theme, as well as getting rid of all my plug-in, and I am still getting several lines of this text at the top of each page:

    web09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: The called constructor method for WP_Widget in avia_socialcount is deprecated since version 4.3.0! Use
    __construct()
    instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: The called constructor method for WP_Widget in avia_combo_widget is deprecated since version 4.3.0! Use
    __construct()
    instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: The called constructor method for WP_Widget in avia_partner_widget is deprecated since version 4.3.0! Use
    __construct()
    instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: The called constructor method for WP_Widget in avia_google_maps is deprecated since version 4.3.0! Use
    __construct()
    instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: The called constructor method for WP_Widget in avia_fb_likebox is deprecated since version 4.3.0! Use
    __construct()
    instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3722 Notice: add_object_page is deprecated since version 4.5! Use add_menu_page() instead. in /hermes/bosnaweb09a/b1609/ipg.sawyerbullockcom/wp-includes/functions.php on line 3662

    Any help would be greatly appreciated!
    Thank you very much

Viewing 30 results - 96,961 through 96,990 (of 142,730 total)