Viewing 30 results - 76,801 through 76,830 (of 142,940 total)
  • Author
    Search Results
  • #821984

    Hey liken22,

    Here is a thread to consider:
    https://kriesi.at/support/topic/home-page-video-on-mobile-phone/

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

    #821976
    Guenni007
    Participant

    too fast closed – sometimes there are different ways to obtain one effect.
    Source thread is here: https://kriesi.at/support/topic/add-hover-on-logo/

    on modern browser times you can use filters instead of a javascript. this influence is imediately done – no waiting till page is loaded:

    Chrome (Google) will force the use in the future and will support this methods.

    see example page here : https://webers-testseite.de/8-columns/
    hover the white filed under the film ( green border) that was your original white png – which is transformed through filter-combinations:
    (i gave container with the image a custom class to selct it better – on logo you can do it via .logo img:hover )

    .logohover img:hover {
    -webkit-filter: invert(0.25) sepia(0.32) hue-rotate(30deg) saturate(10);
    filter: invert(0.25) sepia(0.32) hue-rotate(30deg) saturate(10);
    }

    and you can even do a focus state if you like

    #821975

    In reply to: Icon Menu not working

    Hi adrianwackernah,

    The code

    
    html, #scroll-top-link {
        background-color: transparent;
    }
    

    Should be changed to

    
    html {
        background-color: transparent;
    }
    

    Because it was making your scroll top link transparent.
    And this is the rule that get’s applied in safari to make the menu black

    
    ::selection {
        background-color: rgba(0, 0, 0, 1);
        color: #ffffff;
    }

    It’s it the /wp-content/uploads/dynamic_avia/enfold_child.css file. The weird thing is the font color does not apply, only the background color.
    So you can try this code:

    
    ::selection {
        background-color: rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    ::-moz-selection {
        background-color: rgba(0, 0, 0, 0.2);
        color: #ffffff;
    }
    

    Let us know if that helps.
    Best regards,
    Victoria

    #821972
    clairemartindigital
    Participant

    hi guys,

    when you have a look at my site on tablet, you can see that the baseplate add to cart buttons is broken due to the limited space available in the column. do you have any idea how i could resolve this? the buttons look ok on desktop and mobile. also, i can’t seem to target the header “natural bricks” in the red column. i want to reduce the size of the font for the h2 header on tablet as it is not displaying properly. the header works well on desktop and mobile. so again, only tablet is affected.

    thanks for all your help!

    #821963

    Hey draig,

    Here is a thread for you to consider

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

    #821960

    In reply to: = substr >= =mb_substr

    Hi nimbusworks,

    This thread might help you
    https://kriesi.at/support/topic/black-diamond-with-a-question-mark-enfold-combo-widget/

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

    #821940
    Sladestyle
    Participant

    Hi, I updated to the latest Enfold and now notice the font-icons show as “blocks” instead of the actual font. Even the themes “back to top” arrow doesn’t show correctly.

    Any ideas? https://bucketnote.com

    Thanks!
    Slade

    #821931
    littlebookpress
    Participant

    I was checking all elements of a site we have been developing today and noticed that the three pages that have a post-slider element installed have stopped displaying preview content. Last time I looked at these three pages content was displayed correctly.

    The other thing I noticed was the bottom menu bar had crept up and was partially covering the portfolio items on this page. I fixed this by adding some whitespace below this element but can’t get to the bottom of why this occurred.

    Any idea what might have caused this to happen?

    #821929

    Hey guys,

    Apologies. It’s actually not quite right. Now the arrow is off center and the border stroke appears when I hover over the icon.

    Currently this is the CSS i have. Can you fix it?

    #scroll-top-link{
    width:30px;
    height:30px;
    background: rgba(0,0,0,0.5) !important;
    border: 0px;
    }
    #scroll-top-link:before{
    top:-12px;
    right: 9.5px;
    position:absolute;
    border: 0px;
    }

    **Update!** I believe I fixed it with this CSS, but could you guys make sure I did it correctly?
    See below…

    #scroll-top-link{
    width:30px;
    height:30px;
    background: rgba(0,0,0,0.5) !important;
    border: 0px;
    }
    #scroll-top-link:before{
    top:-12px;
    right: 12px;
    position:absolute;
    border: 0px;
    }

    #scroll-top-link:hover {
    background-color: #060606;
    color: #ffffff;
    border: 0px solid;

    thanks!
    Chris

    • This reply was modified 8 years, 9 months ago by ccyran.
    #821906

    Hi,

    Thanks for the feedback, please try to replace the code Victoria sent with this:

    @media only screen and (max-width: 767px) {
    .avia-caption-title, .avia-caption-content, body div .avia-button {
        font-family:  'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    .avia-caption-content p {
      font-size: 16px;
      line-height: 18px;
    }
    
    #top .av-main-nav > li > a,
    #top .main_menu .menu li ul a { 
        font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
       }
    }

    Best regards,
    Rikard

    #821902
    marko7
    Participant

    Hi Guys.
    I added a custom widget area and called it Rates.
    Chose Rates in the Sidebar setting but nothing is showing?
    Mark.
    http://www.kangaroosinthetoppaddock.com.au/rates

    #821866

    Hi,
    I’m not sure I understand, if you want a transparent header Try this code in the General Styling > Quick CSS field:

    .header_color .header_bg{background-color: rgba(255,255,255,0.1)!important; }

    Please note that the background of that page is black at the top making it look like you have a black header, scroll down and you will see the header is transparent.
    Hope this helps :)

    Best regards,
    Mike

    #821856
    This reply has been marked as private.

    Hi,
    To remove the extra space between the header and the menu in tablet & desktop, Try this code in the General Styling > Quick CSS field:

    .html_header_top.html_header_sticky.html_bottom_nav_header #main {
        padding-top: 65px!important; 
    }

    For mobile Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all #header_banner {
        margin: 0px!important; }}

    Best regards,
    Mike

    #821845

    In reply to: Header static logo

    Hey led-consult,
    If I understand correctly, your left logo changes size when scrolling the page down, and you would like to stop this, Try this code in the General Styling > Quick CSS field:

    .header-scrolled .first-logo { max-height: 88px; }

    Best regards,
    Mike

    #821801

    Thank you so much Ismael!

    1) CSS code for slideshow controls worked on mobile.
    Is it possible to to move slideshow controls to the middle – right now they are on the bottom of the images?

    2) I have background image in color section on the home page,
    How could I display/resize so entire image display on mobile version?
    How could I control position of headline text only on mobile (i want to move it to the top)

    #821784

    Hey unicaweb,

    Please refer to this thread for a possible solution.

    Best regards,
    Victoria

    #821779

    Hey InnovativeAirport,

    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

    
    #top .av_header_with_border.av_header_transparency #header_main {
        border: 1px solid rgba(255,255,255,0);
    }
    

    Yes, that’s the way the header is meant to be by design in Enfold for mobile.
    If you make it transparent, the slider is not under it. You ca try this code:

    
    @media only screen and (max-width: 767px) {
    #top #wrap_all .av_header_transparency {
        background-color: transparent;
    }
    }
    

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

    Mike,

    Thanks for the quick comeback (it works on my phone now too) and the link to clearing the cache. I was confused clearing the cache. I didn’t know if you had to do it on your phone. But I assume you do it on the laptop. I had tried it. On my Safari screen rather than say ‘Remove all website data’ it says ‘Manage Website Data’ and there is nothing in that box. I had clicked in Safari under the Develop Tab/Empty Caches …. don’t know if that is the same thing?

    I see what you mean re the Main Menu and I’m not that WordPress savy so I just created what worked initially. I will go into Appearance/Menus/Create New Menu and save as you say. Hope it works.

    Thank you – Susi

    #821767

    In reply to: Problema

    Hi giovannadebenedictis,

    When making a navigation like this, top level menu items should not be links, just titles and all the links are in the dropdown, that way your users will not be confused, how to open a submenu and navigate to another page.

    Quando si effettua una navigazione come questa, le voci di menu di livello superiore non dovrebbero essere collegamenti, solo titoli e tutti i collegamenti si trovano nell’elenco a discesa, in modo che i tuoi utenti non verranno confusi, come aprire un sottomenu e navigare ad un’altra pagina.

    Best regards,
    Victoria

    • This reply was modified 8 years, 9 months ago by Victoria.

    Yes! Those are two of the ones I’d like to change.

    Full Slider: I was happy with the look of the full slider text, the 2nd photo you attached, but then I made some adjustments to the site that changed the font sizes. The font sizes of the full slider view on my phone have changed. Unfortunately, I’ve been working on so many site elements, I can’t remember what I would have done that would have caused these changes.

    I’m happy with how everything looks on my PC, but I’d like to be able to adjust the Full Slider font sizes on mobile phone views. I’d like “A BRIDGE TO ACHIEVEMENT” to be a little bigger. I’d like the caption text to be bigger. I’d like the “LEARN MORE” button to be smaller. I’d also like the font size of “LEARN MORE” to be slightly smaller than the size of “A BRIDGE TO ACHIEVEMENT”.

    Also, the font style for headers changes to a script style on mobile devices in landscape mode, but displays correctly on portrait mode. It still displays as a script style in both modes on tablets. I’d don’t want a script font on any of the devices or views. Here’s CSS I’m using on the Enfold Child Style.CSS page:

    /*The following changes all header fonts from Chewy to Helvetica on Mobile Devices*/
    @media only screen and (max-width: 767px) {
    .avia-caption-title, .avia-caption-content, body div .avia-button, h1, h2, h3, h4, h5, h6 {
    font-family: ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    }
    .avia-caption-content p {
    font-size: 14px;
    line-height: 14px;
    }

    #top .av-main-nav > li > a,
    #top .main_menu .menu li ul a {
    font-family: ‘HelveticaNeue’, ‘Helvetica Neue’, Helvetica, Arial, sans-serif;
    }
    }

    Parallax Photo at the bottom of my page on the phone & tablet views: I’d like to know what picture size to use, or a different element to use, so that we can see the full photo size on mobile and tablet devices, just like on the PC view.

    Thanks, in advance, for your help!

    #821751
    nrosella
    Participant

    I’m running the latest version of the theme (4.1.1) and when I try to change my site layout from ‘boxed’ to ‘stretched’ the body changes, stretching the full width of the screen, but my header (top header, logo left, menu right) retains the boxed dimensions and doesn’t stretch to the edge of my screen. Any help would be great.

    • This topic was modified 8 years, 9 months ago by nrosella.

    Hi,
    I added Victoria’s code to your Quick CSS and cleared my cache and it worked. But the it points to a menu issue you have which is the desktop menu you show on your site is not listed in your menus, so it will not show in your mobile menu.
    I believe that the main menu is from your parent theme, because the only menu in your child theme is the “socket memu” Please recreate your main menu and save as “main” and then go to Menu > Manage Locations tab and choose it as your main menu so it will show in your mobile menu.

    Best regards,
    Mike

    #821747

    Hey,

    This solution does not work

    Thank you.

    Christophe.

    #821746

    Hey Pirlyxyz,
    To add the tagline from the WordPress settings under the logo, edit the Tagline in WP:
    postimage
    Add this code to the end of your functions.php file in Appearance > Editor:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
      $sub .= "<span class='logo-title logo-subtitle'>";
      $sub .= get_bloginfo( 'description', 'display' );
      $sub .= "</span>";
      return $sub;
    }

    Add this code in the General Styling > Quick CSS field:

    #top .logo, #top .logo a {
        overflow: visible;
    }
    
    #top .logo-subtitle {
        color: #aaa !important;
        font-size: 18px !important;
        top: 30px !important;
        position: absolute;
       white-space: nowrap;
    }
    

    Here’s how it will look:
    postimage

    Best regards,
    Mike

    Hi Antonio,

    I enabled the lightbox, you can use the code from the link below:
    https://kriesi.at/support/topic/disable-lightbox-slideshow-on-specific-pages/#post-51392

    Let me know if you need help with it.
    Best regards,
    Victoria

    #821725

    Hi there!

    We’re glad you were able to sort this out. Do you need help with anything else related to this topic?

    Best regards,
    Sarah

    Hi,

    Thank you.
    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: 450px) {
    	#top #header_main #menu-item-shop .cart_dropdown_link {
    	    height: 95px !important;
    	    line-height: 80px!important;
    	    margin-left: 15px!important;
    	    padding: 0;
    	}
    	.main_menu .avia-menu {
    	    right: 20px;
    	
    	#top #header_main #menu-item-shop .cart_dropdown_first {
    	  width: 40px;
          height: 80px;
    	}
    }
    

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

Viewing 30 results - 76,801 through 76,830 (of 142,940 total)