Viewing 30 results - 95,851 through 95,880 (of 142,832 total)
  • Author
    Search Results
  • #631475

    Hey Yigit, cheers – this helps. But on mobile view the social icons are not between the logo and the menu.

    I have a second questions. Hope its okay, if i put it here: If you go to the page via desktop view you can see the sub-headlines.
    “Leistungen – What we do…”
    On Google these subheadlines you can see are “LeistungenWhat we do”…Google cannot distinguish between the head and subheadline. How can i disable that only the headlines are shown.I face it in you photography demo too.

    Hope you understand what i mean :-) If not please ask.

    Thank you very much!
    Kind regards

    #631470

    Hi,

    Please select “Removed sliders” from screen options on top right and they will appear in the slider list.

    Best regards,
    Vinay

    1039 Online
    Participant

    We have a website with a tall logo, so I adjusted the height of the submenu using css:

    /*Set vertical location of submenu*/
    .sub-menu {top:139px!important;}

    With a sticky header, now when I scroll down, the submenu is too low and disappears when I move the mouse off the main menu item in order to try to click on a submenu link.

    #631445
    XtremeHospitality
    Participant

    Hi!
    First off, amazing theme. I’ve used it on 4 different websites in the past 2 months and the potential is unlimited – I see no need to use any other theme anymore. Great work! Our site right now is a simple one pager that we quickly put together but now we’re looking to expand on its content and visuals.

    I was checking out a bunch of random sites the other day and came across this: http://provideoannouncements.com/

    In the top blue section, the content is fixed and scrolls with the page (and is then “swallowed up” by the next section). How do I achieve this effect?
    My dismal attempt of creating a custom class with position:fixed; and applying it to the content block didn’t do anything so I’m assuming there’s more to it than that.

    Furthermore, is it possible to have a colour section video background’s position fixed as well?

    Thanks!

    #631437
    kp-1994
    Participant

    Hi Kriesi-Team,

    i already posted here: https://kriesi.at/support/topic/translation-missing-child-theme/
    But dondela wants his/hers own tread, so i gone away.

    I’m using a childtheme to modify some css and add some functions for better implement some plugins.
    Up to now i never had to do something to have german as Theme/Childthemelanguage by default.

    wp-config is correct
    I’m using the German WordPress Version

    I don’t want to translate or change something. I want, that the german translation file of parent enfold loads correctly.

    I Updated an other Site, now it’s the same there. Already got Backup.

    i did as Andy wrote, but its the same.
    I deactivated all Plugins, same.
    You are allowed to change everything to get clear what the problem is.
    No matter if something brakes, i have backups.

    In my other Enfold installations its the same, so please write how to fix it if you got it, so i can do with the others.

    BTW: the Auto Update functionality of the theme doesn’t work too (in all six installations). I already followed the instructions in the forum for that (but on first install i already installed by using ssh. It doesn’t make sense to me that this would change anything). Probably you can give me a tip on that. (Of course the file permissions are set correct.)


    I am my own hoster. Using Veste CP on Ubuntu 14.04. I already disabled NGINX Caching and mod_Pagespeed, trying befor i contacted you.
    You are allowed to test on the Site, it’s not Public yet.

    If you need i can you give access to Apache Logs etc.

    I think now is all information together.

    Please help, even if Andy can’t reproduce, propably someone else can. I have 6 licenses and up to now i had not much to ask here.
    Best Jan

    michaelmiddle
    Participant

    I have tried all the steps in the WP 4.5 post (https://kriesi.at/support/topic/having-problems-after-updating-to-wordpress-4-5-please-read-this-first/) with no luck. The snippet brought them all back, and I cleared cache, deactivated/activated plugins, and removed old plugins. Nothing worked. Can you assist? I have included site and login information.

    • This topic was modified 9 years, 10 months ago by michaelmiddle. Reason: Used the wrong clipboard copy/paste for the password
    #631408

    Topic: Menu problem

    in forum Enfold
    Ludewigs
    Participant

    Hi Everyone,

    I’m facing the same problem as the Guy in this thread.
    The problem seemes to be solved by Josue, but not publicly visible. Is there a way for everyone to fix it?
    I already tried every hint in this thread but it still corrupt. Perhaps you can show us all how to fix this problem?

    Thank you for such a great theme!!!

    BR
    Ruben

    #631407

    Hi

    The version is 11 I believe.

    Here is the branding at the top http://imgur.com/LPYchSk its a bit pixelated around the edges – fine in chrome.

    Here is the footer, again with the branding and the menu text in the footer not being centred – fine in chrome. http://imgur.com/4zvkEyC

    Overall the whole image quality on the site is much lower in IE than Chrome

    Thanks

    yusupovafashion
    Participant

    Hello, here http://cba-aero.ru/o-kompanii/ if click on “Call back” in main content, popup form has opened normally,
    but if click on “Call back” in top line, popup form does not work.
    Both links is /form/?iframe=true
    How to fix it?

    enzowillemstad
    Participant

    Within a Color section I have 2 columns.
    The background of these columns contain an image which has 2 sides (exactly half). One side white (where the text needs te be) and the other side has a image.
    The text needs te be on top of the white part of the background-image but not on the image part. So I center, center the background image and give the content of the column a padding on the image side of 50%.
    This works on mobile because the columns are underneath each other, but this doesn’t work on full width. because the columns are next to each other it seems de 50% padding is calculated from the full width of the color section instead of the column (which is half the color section’s width)
    But when I set the padding on 25% and it all looks great at full width. it doesn’t look good on mobile.

    Is this a bug in the column padding options?
    Could somebody please help?

    Hi,

    Yes, it will work if you use the .css file, but i forgot about another thing, usually Sass -and similar- strip the comments of the file in order to compile it compressed / minified, this would lead to a problem if you use style.css because style.css is a key theme file that uses CSS comments (/* */) to tell WordPress the theme’s metadata (parent theme, theme name, author, etc).

    As a suggestion, if you use child themes extensively try to not use style.css as your custom CSS file (because of the aforementioned), instead create a /css/ folder in your child theme and use a custom file (ex: main.css), to enqueue it simply paste this in functions.php:

    add_action('wp_enqueue_scripts', function() {
       wp_enqueue_style( 'main-css', get_stylesheet_directory_uri().'/css/main.css', array(), '', 'all' );
    }, 100);

    Regarding the coloring issue, i think it would depend, if you’re on a live server i’d suggest using less.js, however i wouldn’t recommend having that once the site is finished because it could affect the performance.

    Preprocessors are a big topic, maybe it would be better to start testing on a local HTML page and once you get a hang of it transition to the child theme.

    Best regards,
    Josue

    • This reply was modified 9 years, 10 months ago by Josue.
    #631374

    In reply to: accordion slider

    Hi,

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

    
    #top .aviaccordion-title-on-hover .aviaccordion-preview {
        opacity: 1;
        filter: alpha(opacity=1);
        background: rgba(0,0,0,0.5);
    }
    #top .aviaccordion-title-on-hover:hover .aviaccordion-preview {
        background: transparent!important;
    }
    

    Best regards,
    Yigit

    #631370

    In reply to: Button 1 Label css

    Hi,

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

    
    #top .avia-slideshow-button {
        font-size: 14px;
        background: orange;
        color: red!important;
        border-color: purple!important;
    }
    

    Best regards,
    Yigit

    #631352

    Hi,

    try this code:

    .container.av-logo-container, #text-5, #text-6 {
    display: none;
    }
    .html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 0px;
    }
    

    And for your homepage:

    .page-id-734 #main {
    padding-top: 200px !important;
    }
    .page-id-734 .container.av-logo-container, .page-id-734 #text-5 {
    display: block;
    }
    .page-id-734 #text-6 {
    display: block;
    }
    

    Best regards,
    Andy

    Hello,

    First of all thanks for your endurance.

    It is not about one specific element, it is about scrolling down in general.
    When scrolling down I want to make sure that the top of for example the color-section about us is at least once shown at the top of my screen.
    Let’s make an example, imagine:
    The absolute top of my page is height 1000px. The absolute bottom (bottom of footer) is height 0px. On my Screen I can show 100px. When now a color section begins at height 500px and ends at height 400px and the screen shows from height 395 to 495, there is 5px of another Color-Section shown. This is what annoys me, so I would like that view then to be Auto-corrected to show from height 500px to 400px, so that the whole color section is shown, without any other color-section.

    Do you understand now?

    Thank You!
    Gerke

    #631332

    Hey!

    You are most welcome :)

    If you are using another caching plugin with Wordfence try and disable minify js feature in Wordfence settings and check if that solves the problem.
    You can also use an alternate plugin for security please check out recommend plugins https://kriesi.at/support/topic/recommended-plugins/

    Best regards,
    Vinay

    #631318

    Hi,

    you could try to make it smaller on mobile devices:

    @media only screen and (max-width: 1024px) {
    .av-fixed-size .av-masonry-entry .av-inner-masonry-content, .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content {
    bottom: -22px;
    }
    .av-inner-masonry-content-pos {
    margin-top: -17px;
    }}
    

    Adjust as needed.

    Best regards,
    Andy

    Hey!

    Try adding this code to the Quick CSS:

    #top .av-submenu-container {
        position: static;
    }

    Cheers! 
    Josue

    #631310

    Hi,

    you can check out this: https://kriesi.at/support/topic/recommended-plugins/

    Best regards,
    Andy

    #631303

    Hi,

    add this code:

    @media only screen and (max-width: 767px) {
    .responsive #top #main {
    top: 275px;
    position: relative;
    }}
    

    Best regards,
    Andy

    Hey,

    Try adding overflow: hidden to your border code:

    .border-top-bottom {
        border-top: 1px solid #000000!important;
        border-bottom: 1px solid #000000!important;
        overflow: hidden;
    }

    Best regards,
    Josue

    Hi,

    Ok i’ve opened a new topic here: https://kriesi.at/support/topic/avia-spinning/

    Thanks

    #631279

    Hey Guys.

    I’m just go out and shoot myself :-D I just saw that my client had made alot of the posts “sticky”, which is why they don’t appear from the top. And because there was so many the new ones come way later … like you said in your reply

    Sorry for the trouble. I should have seen that …. Jeeez.

    Thanks!

    Hi Andy,

    a more helpful moderator answered this on the previous post I mentioned above. It wasnt an issue with the third party plugin as I was able to grab the information from the plugin, I just wasnt able to place it correctly in the theme file due to the way the that particular file in theme was coded which I was unfamiliar with.

    For anyone else looking for the answer to this you can find it here:

    thanks again Ismael!

    : )

    #631274

    In reply to: styling countdown

    Hi,

    try this code:

    #top .av-trans-light-style .av-countdown-cell-inner {
    border: none;
    }
    span.av-countdown-cell.av-countdown-days {
    border-right: 3px solid white;
    border-left: 3px solid white;
    }
    

    Hope you are happy now :).

    Best regards,
    Andy

    #631270

    In reply to: Lightbox Text Slider

    Hi!

    versuche es mit diesem Code im Quick CSS Feld:

    button.mfp-arrow.mfp-arrow-right.mfp-prevent-close {
    top: 86%;
    right: 34%;
    }
    button.mfp-arrow.mfp-arrow-left.mfp-prevent-close {
    top: 86%;
    left: 34%;
    }
    

    und passe gegebenenfalls die Werte noch an.

    Gruß!
    Andy

    #631266
    kaloraat
    Participant

    Hi
    I need to remove the header section that is usually a place for logo and menu. I need to put logo right and address left instead!
    I created a widget and placed in the header but that did not support paragraph break html <br>. As a result 3 lines of address took the whole page with huge gaps.

    I also want to put full width menu in the footer just like on top of the pages, not in the socket.

    Please look at the attached screenshots. Please help.
    Thank you!

    • This topic was modified 9 years, 10 months ago by kaloraat.
    #631264
    scottybowl
    Participant

    Hi Guys,

    Love the theme, just one question when defining fonts – we don’t want to use a custom font but in the header of every page is the following code.

    I can’t see the option in the config to disable custom fonts – any advice would be hugely appreciated.

    
    src: url('http://www.buymelocal.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3');
    src: url('http://www.buymelocal.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.eot?v=3#iefix') format('embedded-opentype'), 
    url('http://www.buymelocal.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.woff?v=3') format('woff'), 
    url('http://www.buymelocal.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf?v=3') format('truetype'), 
    url('http://www.buymelocal.co.uk/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.svg?v=3#entypo-fontello') format('svg');
    } #top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont='entypo-fontello']:before{ font-family: 'entypo-fontello'; }
    
    #631262

    Hi @teotaban ;

    to have a different content for each (mobil and desktop) is possible.
    in order to achieve that ; you should give an “id” or “class” to your elements.
    see Turn on Custom CSS Class field for all ALB Elements
    and Hide menu items on mobile

    Just an example :
    Color section (I give an id : my_section_desktop)
    > I put the elements that I want to show only on desktop
    Color section (I give another id : my_section_mobil)
    > I put other elements that I want to show only on mobil

    In the css style :

    /*HIDE ON DESKTOP*/
    #my_section_mobil {display: none !important;}
    
    /*Telephone Styles */
    @media only screen and (max-width: 767px) {
    /*HIDE ON MOBIL*/
    #my_section_desktop {display: none !important;}
    /*SHOW ON MOBIL*/
    #my_section_mobil {display: block !important;}
    }
    • This reply was modified 9 years, 10 months ago by begrafiks.
Viewing 30 results - 95,851 through 95,880 (of 142,832 total)