Viewing 30 results - 135,541 through 135,570 (of 142,830 total)
  • Author
    Search Results
  • Hi!

    1) You can set a logo height for smaller screens with a media query – i.e. insert following code into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive .mobile_slide_out .logo img {
    max-height: 80px !important;
    }
    }
    

    2) The list item icons size won’t change – regardless of the screen resolution. The main reason is that the user wouldn’t be able to see the icon with a reduced font size.

    3) The post slider image size changes because Kriesi turns a 4 column grid into a 2 column grid if the user views the website with a low resolution. The main reason is that a 4 column grid would make the content unreadable in certain cases. If you want to keep the 4 column structure insert following code into the quick css field

    
    @media only screen and (max-width: 767px){
    .responsive #top .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top .avia-content-slider-odd .slide-entry.slide-parity-even {
    margin-left: 4%;
    clear: none;
    }
    
    .responsive #top .slide-entry {
    width: 20%;
    margin-left: 4%;
    }
    }
    

    Regards,
    Peter

    #205787
    caroberto6
    Participant

    Dear Kriesi!

    I’d like to inquire about my follow ticket:
    https://kriesi.at/support/topic/wrong-table-visualization-in-internet-explorer/

    You closed the ticket, but your code didn’t work, and the problem still occurs. This means, you don’t know the solution, and I don’t ask you anymore about it, or you are thinking the answer in the background?

    Thank you for your answer!

    Regards:
    Robi

    #205779

    In reply to: little problem list:/

    Hi!

    Re 1) Because the WooCommerce shop plugin uses a custom template for the shop pages and this custom template does not support our template builder. If you want to feature some products on the homepage you can use the “Product Slider” or “Product Grid” elements in your advanced layout. Combining the Layerslider with the shop page is not possible.

    Re 6) If you just want to remove the sidebar on the blog page without extending the blog with use following code

    
    #top.blog #main .sidebar {
    display: none;
    }
    

    If you want to use a white bg color for all table rows insert following code into the quick css field

    
    .main_color tr:nth-child(odd), .main_color .pricing-table>li:nth-child(odd), .main_color .pricing-extra {
    background: #fff;
    }
    

    Re “The second point is that in Germany, the point “forward to card” always stands below right, not left. How can I just witch those two blocks with eachother? So that “calculate delivery charges” is always left and cart amount block is always right.” and “carting out the point “calculate delivery charges”.

    We just use the default WooCommerce checkout template and you probably need to modify it somehow. If you purchased a woocommerce extension I suggest to contact the WooCommerce plugin developers ( http://www.woothemes.com/support/ ) – maybe they can help you for free. Otherwise you can try to hire someone to modify the checkout templates for you – i.e. here: http://www.microlancer.com/ or here: http://kriesi.at/contact/customization

    The same applies to the carting out issue – you would need to modify the php code or write a js code to pre-select the right dropdown item. CSS won’t help in this case.

    Regards,
    Peter

    #205743

    Hi!

    At this point you’ll need to wait for Facebook to re-pick up the correct data. I would recommend sticking with the WordPress SEO route as Yoast’s code and plugins are considered the top tier by most developers in proper SEO and even Social settings when using WordPress.

    Edit – You can try forcing Facebook to refresh its content by throwing the url in their debug here; https://developers.facebook.com/tools/debug

    Best regards,
    Devin

    • This reply was modified 12 years, 2 months ago by Devin.
    #205704

    Hi!

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top.avia-blank #wrap_all {
    vertical-align: top;
    padding-top: 50px;
    }

    And adjust as you’d like.

    Cheers!
    Devin

    #205700
    This reply has been marked as private.
    #205699

    In reply to: Content slider height

    Its taking effect but you need to pull the content slider up a bit for it to show fully. Like:

    
    @media only screen and (min-width: 491px) {
    #top.home .avia-content-slider-inner {
    height: 50px !important;
    } }
    
    @media only screen and (max-width: 490px) {
    #top.home .avia-content-slider-inner {
    height: 100px !important;
    margin-top: -50px;
    } }
    
    #205695

    In reply to: Content slider height

    Brilliant, thank you very much for your help.
    That’s working perfectly for regular browsers, but under a certain width ~485 (or on mobile internet), the slider doesn’t expand to show all the text and this code doesn’t seem to have an effect. Is there different code for the content slider when on mobile or a very small browser?

    @media only screen and (min-width: 491px) {
    #top.home .avia-content-slider-inner {
    height: 50px !important;
    } }

    @media only screen and (max-width: 490px) {
    #top.home .avia-content-slider-inner {
    height: 100px !important;
    } }

    Thanks again,
    Ruth

    #205615

    In reply to: Content slider height

    Hey!

    You can try something like this:

    #top.home .avia-content-slider-inner {
    height: 30px !important;
    }

    And adjust the height as needed.

    Regards,
    Devin

    #205607

    Hey Cdfb!

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

    .header_color .main_menu ul:first-child >li > ul { border-top: none; }

    Cheers!
    Yigit

    Hey!

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

    .title_container .breadcrumb { left: -4px; top: 75%; }
    #top .title_container .container { min-height: 70px; }

    Cheers!
    Yigit

    Hey!

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

    .title_container .breadcrumb { left: -4px; top: 75%; }
    #top .title_container .container { min-height: 70px; }

    Cheers!
    Yigit

    #205570

    In reply to: little problem list:/

    This reply has been marked as private.
    #205549
    Cdfb
    Participant

    Hi there

    I wonder if there is a way to get rid of the (blue) lines below the navigation on top.
    My website is the following: http://pakka.studio-libelula.ch

    Thank you in advance!

    #205538

    In reply to: Icon box cursor

    Brilliant, thanks. That’s working now.
    I also added the code below to have the same effect over the whole icon box rather than just the icon and title.
    .iconbox_top .iconbox_content {
    cursor: pointer !important;
    }

    A related question:
    Can I also remove the page references from the code I added to the avia.js file, which is below?
    I.e. I want the change to apply to all pages on the site, but as the code I was given before included page refererences I just added all the relevant page references.

    jQuery(“.home article.iconbox, .page-id-15 article.iconbox, .page-id-35 article.iconbox, .page-id-542 article.iconbox, .page-id-468 article.iconbox, .page-id-114 article.iconbox, .page-id-17 article.iconbox, .page-id-19 article.iconbox,.page-id-53 article.iconbox, .page-id-55 article.iconbox, .page-id-56 article.iconbox, .page-id-21 article.iconbox, .page-id-69 article.iconbox, .page-id-23 article.iconbox”).each(function(){
    var theLink = jQuery(this).find(“a”).attr(“href”);
    jQuery(this).on(“click”, function(){
    window.location.href = theLink;
    });
    });

    #205519

    In reply to: little problem list:/

    Hey!

    1.) You can create a new shop page then insert the LayerSlider + Product Grid element. Deselect the page on Woocommerce > Settings > Pages > Shop Base Page.

    2.) I don’t see the issue with the logo getting smaller but you can add this on Quick CSS:

    .logo img {
    height: 97px !important;
    }

    3.) Change the variation select text using this:

    #top .main_color select {
    color: red;
    }

    4.) Can you please post a screenshot?

    5.) Add this to make the background transparent for logo/partner element:

    #top .avia-logo-element-container .slide-image {
    overflow: visible;
    background: none;
    }

    6.) You can use this to change the blog background:

    .blog .container.template-blog {
    background: white;
    padding: 0 20px;
    }

    Remove browser cache then reload the page a few times to see the changes.

    Best regards,
    Ismael

    #205513

    Hey!

    Please add this on your custom.css or Quick CSS to fix the logo:

    @media only screen and (max-width: 767px) {
    .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    width: 100% !important;
    position: relative;
    top: 15px;
    }
    }

    Did you modify anything on the theme files? The responsive menu is not showing. You have a lot of plugins installed, please try to deactivate them. See if it fixed the issue.

    Best regards,
    Ismael

    #205509

    In reply to: Padding

    Hey!

    I tried it on Quick CSS but it is not working. Do you have access to the custom.css? Please add Yigit’s and my code there:

    .content, .sidebar {
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    }
    
    body .column-top-margin {
    margin-top: 10px!important;
    }

    Edited: I added the changes directly on header.php and it seems to work now: http://www.gc-vitae.nl/

    Best regards,
    Ismael

    #205504
    zerozendesign
    Participant

    Hi guys.

    I’m confused as to why the blank page template wants to arrange everything centered vertically instead of just having a margin from the top. What is happening is I have different sized images in an easy slider. Because they are different heights, the header area and footer area are moving up and down. How can we convert so that placement is relative to the top of the page instead of centered? You can see at http://codelessme.com/casey

    Regards,
    David

    #205503

    In reply to: Icon box cursor

    Hi!

    I tested the links, I can see the mouse cursor change to pointer when I hover over the iconbox top icons. Add this on your custom.css or Quick CSS:

    .iconbox_top .iconbox_icon {
    cursor: pointer !important;
    }

    Regards,
    Ismael

    #205496

    Hey Courin!

    Edit header.php, find this code:

    echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');

    Below, add this code:

    echo "<div class='header-search'>";
    get_search_form();
    echo "</div>";

    Add this on your custom.css or Quick CSS:

    .header-search {
    position: absolute;
    top: 30px;
    left: 250px;
    }

    Modify the main menu font using this:

     .header_color .main_menu ul:first-child > li > a {
    color: red;
    }
    
    .main_menu ul:first-child > li > a {
    display: block;
    text-decoration: none;
    padding: 0 13px;
    font-weight: normal;
    font-size: 15px;
    }

    Cheers!
    Ismael

    #205486

    Hey!

    You can add this on your custom.css or Quick CSS:

    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: 100%;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 100%;
    }

    Adjust the max width.

    Best regards,
    Ismael

    #205484

    Hi!

    This will get you started. Add this on your custom.css or Quick CSS:

    .current-menu-item.current_page_item a {
    background: gray;
    border: 3px solid green;
    border-radius: 6px;
    }
    
    .main_menu ul:first-child > li a {
    height: 50px !important;
    line-height: 50px !important;
    }
    
    .main_menu {
    position: absolute;
    top: 30%;
    }

    Regards,
    Ismael

    #205478

    Thanks for all the suggestions everyone and keep them coming! Still no gurantee on any one feature but this is the only place where Kriesi is actively looking for feature requests.

    Also a small note that any support issues should be made as their own new topics :)

    #205438
    hellovlad_
    Participant

    Hi,
    Currently on my page http://www.linaukis.com the logo (blue circle at the top) is linking to a dummy page from the Enfold Theme.
    Where can I modify in the settings, so to that the homepage is set to be the portfolio page and logo is linking to it as well?
    can’t figure it out.

    thanks!

    #205426
    fjrichart
    Participant

    I’m using. I’ve created a second menu and as I’m using Header with social icons and bottom it appears on top above the logo.
    Is it possible to make this second menu appear below the logo and eliminate the line above the logo? At least in the mobile.

    #205409

    Hi Josue,
    I’m currently developing locally (I use Desktop Server as it’s quite a big site) so unfortunately I can’t provide a link. Any way you could provide some “generic” CSS that I could adapt?
    I’d still be interested in how to disable the slider completely for mobile too.

    Regards

    John

    #205356

    Add this code too:

    .avia-builder-el-7 table label {
        position: relative;
        top: -15px;
    }

    Regards,
    Josue

    #205332
    Courin
    Participant

    Hallo Zusammen,
    ich habe wieder ein paar fragen zu meinen kleinen Projekt.

    http://shop.rb1.at/

    Erste Frage
    Ich möchte gerne den Header-Bereich Editieren, damit ich rechts neben dem Logo eine Search-bar einfügen kann.
    bitte sagt mir auch gleich welche Befehlszeile ich benötige um Sie hier einzubinden.

    Zweite Frage
    ich möchte die Schriften unabhängig in Größe und Stärke editieren für das Top Menü – Hauptmenü und das Footer Menü

    Ich danke euch vorab,

    mit freundlichen Grüßen,

    Courin

    #205310

    Although my Client Gallery is named that – the CPT Name of client-gallery was being returned – which was not ideal – so I added to your function and now it becomes

    add_filter('avf_title_args', 'alter_single_post_title', 10, 2);
    
    function alter_single_post_title($args,$id)
    {
    if (is_single())
    {
    $type_title = get_post_type($id);
    $type_title = str_replace("-", " ", $type_title);
    $type_title = str_replace("_", " ", $type_title);
    $type_title = ucwords($type_title);
    
    $args['title'] = $type_title;
    $args['link'] = get_permalink($id);
    }

    Meaning now in the top left it does read Client Gallery

Viewing 30 results - 135,541 through 135,570 (of 142,830 total)