Viewing 30 results - 1,681 through 1,710 (of 142,844 total)
  • Author
    Search Results
  • Hi Ismael and thanks for your quick reply.

    I’ve added the CSS code you sent me in the Quick CSS panel, but that didn’t make any changes to the mobile menu.

    In the Advanced Styling Menu –> Menu Links in overlay/slide out , the font size is set to 90 px and on desktop it looks fine, but it seems to be 90 px on mobile view aswll despite adding the CSS code.

    I’ve attached the login credentials in Private Content if you want to take a closer look youself.

    #1482099

    Hi and thanks again for your help!
    This doesn´t work for me – i need the headlines aligned to the content below.

    I changed the slider element to a color-element with a fullscreen image on top.
    For the headline i created a column (.headlineOverImage) with a negative margin and a white background-color.
    My question now: Would it be also possible to adjust just the white background to 100%. (And keep the headings narrower ?)

    Hey Scanmark,

    Thank you for the inquiry.

    You can use this css code to manually adjust the style of the menu items on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .html_av-overlay-side #top #wrap_all .av-burger-overlay li a {
        line-height: 1.3em;
        height: auto;
        padding: 15px 50px;
        display: block;
        text-align: left;
        text-decoration: none;
        font-size: 16px;
      }
    }

    Best regards,
    Ismael

    #1482091

    Hey solf,

    Thank you for the inquiry.

    Try to add this css to disable the copyright transition:

    .avia_desktop .av-masonry-entry:hover .av-image-copyright.av-copyright-left {
        transform: none;
    }

    Best regards,
    Ismael

    #1482089

    Hey tsays,

    Thank you for the inquiry.

    You can use this css code to disable the background image of the color sections on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .avia-section {
        background-image: none !important;
      }
    }

    Best regards,
    Ismael

    #1482076

    In reply to: White bar at the top

    Hi,

    Try to add this css code to remove the menu border:

    #top .avia-menu.av_menu_icon_beside {
        border: 0;
    }

    Best regards,
    Ismael

    Hi,

    You can do the following steps to re-assign the posts to a different author:

    1. Go to Posts > All Posts.
    2. Use the checkboxes to select the posts you want to reassign.
    3. At the top of the list, select Bulk actions > Edit, then click Apply.
    4. In the bulk edit screen, you’ll see a dropdown for Author.
    5. Choose the new author, and then click Update.

    Let us know if you need more info.

    Best regards,
    Ismael2

    Scanmark
    Participant

    Hi there
    I’ve been searching high and low, but I can’t seem to find an answer to this question.

    I’m displaing the menu Items for desktop as a Burger menu. I’ve styled it by using the “Menu Links in overlay/slide out” option in “Advanced Styling”.
    So far…so good.

    The problem is that when I’m adjusting the font size so it looks good on the desktop, it’s way to big on the mobile. Adjusting it so it fits to the mobile, makes the font to small for the desktop.

    Can you provide me with a CSS-code that let’s me adjust the font size for either of these?

    #1481988
    solf
    Participant

    Hey,
    The copyright notice on the images in a Masonry Gallery moves on hover. (class = av-image-copyright av-copyright-left)

    How can I stop this?
    Thanks, solf

    #1481980

    In reply to: Duplicate social icon

    Hi,

    Please try this CSS:

    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all .main_menu .social_bookmarks {
        display: none;
      }
    }

    You need to adjust this CSS though since it’s using !important:

    @media only screen and (max-width: 479px) {
      #header .social_bookmarks.icon_count_5 {
        position: absolute !important;
        top: 30px !important;
        right: 20px !important;
        display: flex !important;
        gap: 6px !important;
        margin: 0 !important;
        padding: 0 !important;
      }
    }

    A more specific selector should do the trick.

    Best regards,
    Rikard

    #1481978
    ausgesonnen
    Participant

    Hello,
    I am trying to add new elements to my page in the avia layout architect. Before the tool bar was sticky, now it scrolls with the page and I cannot add anything new to the middel or end. I am sure that it did not used to be like this. So what happnend? HOw can I get the tools to stay at the top?

    • This topic was modified 11 months ago by ausgesonnen.
    #1481958

    In reply to: SVG icons missing

    Here I got the code from Rikard: Post #1327639

    Is there a hook to tie it only to the logo?

    #1481918

    Hi,

    Please continue here; https://kriesi.at/support/topic/theme-page-editor-not-displaying/

    Best regards,
    Ismael

    #1481908

    In reply to: Video letterboxing

    Hi,

    Thank you for the info.

    We may need to login to the site to properly check the issue. Please provide the login details in the private field. In the meantime, try adding the following css code to manually stretch the video and make sure that it covers the entire slider container.

    #top .avia_video {
        object-fit: cover;
    }

    Best regards,
    Ismael

    #1481905

    In reply to: Model parallax

    Hi,

    Thank you for the screenshot.

    Have you tried applying top padding to the column containing the image? This should push the image downward.

    View post on imgur.com

    As for the box-shadow, you may need to use a photo editor to apply a shadow effect directly to the transparent image, then re-upload it.

    Best regards,
    Ismael

    #1481901

    Hey webidoo,

    Thank you for the inquiry.

    It’s possible that some scripts or plugins don’t work well with the current compression settings. You may need to disable compression and use minification only. Another option is to completely disable the default compression settings and use a third-party caching/compression plugin such as Autoptimize, WP Rocket or WP Super Cache.

    Best regards,
    Ismael

    #1481898

    Hey es.design.ma,

    Thank you for the inquiry.

    You can use this css code to adjust the size of the slider arrows:

    #top .av-slideshow-ui .avia-slideshow-arrows.av-visible-prev > a.prev-slide, #top .av-slideshow-ui .avia-slideshow-arrows.av-visible-next > a.next-slide {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        top: 50%;
        margin: -30px 15px 0;
    }
    
    #top .avia-slideshow-arrows a.avia-svg-icon svg:first-child {
        margin-top: 0;
        height: 0.5em;
        width: 0.5em;
    }

    Best regards,
    Ismael

    #1481891

    on https://kriesi.at/support/topic/center-logo-with-burger-icon-on-right/#post-1481879 it is the setting now.
    change font-size to 36px or something else.

    #top #wrap_all #av-burger-menu-ul li {
      font-size: 36px !important;
    }
    #1481890

    see: https://kriesi.at/support/topic/center-logo-with-burger-icon-on-right/#post-1481874

    it does work on dev tools – so either it had to set something to !important or to have on a selector a higher specificity.

    Try:

    @media only screen and (max-width: 767px) {
      .responsive #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
      }
    
      .responsive #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap .slide-entry {
        flex: 1 1 100%;
        margin: 0 0 20px !important;
        width: unset !important;
      }
    }
    #1481889

    I really need this if you can:

    I have “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view?

    I know you sent this code below, but it didn’t do anything.

    @media only screen and (max-width: 767px) {
    #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    }

    #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap .slide-entry {
    flex: 1 1 100%;
    margin: 0 0 20px !important;
    }
    }

    #1481879

    font-size is now on :

    #top #wrap_all #av-burger-menu-ul li {
      font-size: 40px;
    }

    just change that value

    #1481878

    the logo positioning with 37% on the left is not so advisable.

    i would first make the header fixed even in between 768 and 989 px.
    then make for the nav a determined width – f.e. 170px

    #top .av-main-nav-wrap {
      float: right;
      position: relative;
      z-index: 3;
      padding: 0  !important;
      margin: 0 0 0 15px !important;
    }
    
    .header_color.av_header_transparency .av-hamburger-inner, 
    .header_color.av_header_transparency .av-hamburger-inner::before, 
    .header_color.av_header_transparency .av-hamburger-inner::after {
      background-color: #FFF !important; 
    }
    
    #top .av_header_transparency .phone-info, 
    #top .av_header_transparency .social_bookmarks li a {
      color: #FFF !important;
    }
    
    #top .av_header_glassy.av_header_transparency .avia-menu.av_menu_icon_beside {
      border: none !important;
    }
    
    #top .main_menu {
      width: 170px
    }
    
    #top .logo {
      width: calc(100% - 170px);
      left: unset;
    }
    
    #top .logo img {
      left: 50%;
      transform: translateX(-50%)
    }
    
    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet #top #wrap_all #header {
        position: fixed;
      }
    }
    
    @media only screen and (max-width: 767px) {
      #header .social_bookmarks {
        display: none !important;
      }
    }
    #1481874

    First have a look at the burger opened layout – this is realy nearby your example page – isn’t is?

    now your columns – best would be if the section got a custom class that no other sliders are influenced :

    look for testing purpose:

    @media only screen and (max-width: 767px) {
      #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
      }
    
      #top .avia-content-slider-element-container .avia-content-slider-inner .slide-entry-wrap .slide-entry {
        flex: 1 1 100%;
        margin: 0 0 20px !important;
      }
    }
    #1481873

    Thanks for that, but it had the logo at the top and didn’t look very good.

    I think my 2 biggest things are just to have the Logo centered and responsive to any size screen. Seem like when I shrink my desktop view, it is too close to the burger icon.

    And the second is the “Reviews” area on the home page using “Content Slider”. It has 2 columns on desktop, but how can I have it show just 1 Column on Mobile view? https://img.savvyify.com/image/Screen-Shot-2025-04-22-at-10.31.27-AM.9qZEU

    #1481872

    In reply to: White bar at the top

    this is the rule that is set :

    .av-burger-overlay-bg {
      z-index: 3;
      opacity: 0.9;
      background: #000;
      display: block;
      position: fixed;
    }

    so play here with opacity or background-color – for quick css add #top to the selector for more selectivity:

    #top .av-burger-overlay-bg {
      opacity: 0.7;
      background: #000;
    }
    #1481871

    In reply to: White bar at the top

    I am talking about more transparent for the Charter school, but I do have the code for Priver also. I was just showing you Priver as as example of how the header is all the way to the top, without a gap, like the charter had.

    #1481869

    sorry i thought you like to have that look of your example page.
    So maybe you try :

    #top .av-burger-overlay-bg {
      z-index: 3;
      opacity: 1;
      background-image: url(https://sonoranwaters.armourcloud.io/wp-content/uploads/2025/04/Custom-Pool-Designer-and-Builder-in-Scottsdale-Sonoran-Waters-3-1.jpg);
      background-size: cover;
      background-position: center bottom;
      background-repeat: no-repeat;
      display: block;
      position: fixed;
    }
    
    #top .av-burger-overlay-inner {
      z-index: 3;
      opacity: 1;
      background-image: url(https://sonoranwaters.armourcloud.io/wp-content/uploads/2025/04/Sonoran-Waters-Logo_LONG.png);
      background-repeat: no-repeat;
      background-size: 450px;
      background-position: center top;
      background-color: rgba(0,0,0,0.4);
      backdrop-filter: blur(2px)
    }

    you header settings and logo behaviour should be corrected generally.
    Overlapping with burger icon etc. – that is something we can do for burger overlay then too.

    and maybe this is nicer on transparency headers:

    #top .av-main-nav-wrap {
      float: right;
      position: relative;
      z-index: 3;
      padding: 0  !important;
      margin: 0 0 0 15px !important;
    }
    
    .header_color.av_header_transparency .av-hamburger-inner, 
    .header_color.av_header_transparency .av-hamburger-inner::before, 
    .header_color.av_header_transparency .av-hamburger-inner::after {
      background-color: #FFF ;
    }
    
    #top .av_header_transparency .phone-info, 
    #top .av_header_transparency .social_bookmarks li a {
      color: #FFF;
    }
    
    #top .av_header_glassy.av_header_transparency .avia-menu.av_menu_icon_beside {
      border: none !important;
    }
    
    #1481867

    In reply to: White bar at the top

    Got it. I just don’t see why all my other websites show this normal, but the Champion schools site has that top border that needed the CSS code.

    Even another site that I have shows correctly and doesn’t have that extra space. This sites header/menu goes to all the way to the top of page also: https://priverproducts.com/ without that needed code

    #1481866

    find those entries in your css and korrekt them by:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 70px !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 30px !important;
      }
    }
    #1481865

    In reply to: White bar at the top

    The admin bar sometimes interferes with the setting of the frontend css.
    have a look to this privacy page : https://webers-web.info/datenschutz/
    if you scroll you see that the headings will be sticky til the next heading goes to top. if on that page the admin bar is present – the sticky moment seems to be wrong. – because those 50px are not concidered.
    You can test it:
    Go to your profile and turn off the “Show admin bar” to see that it has nothing to do with logging in and out.
    This is something that normal users won’t see anyway.

Viewing 30 results - 1,681 through 1,710 (of 142,844 total)