Forum Replies Created

Viewing 30 posts - 56,341 through 56,370 (of 67,207 total)
  • Author
    Posts
  • in reply to: Ajax portfolio #308648

    Hey!

    Thank you for using Enfold.

    If you want to add a pagination on top of the portfolio grid element, edit config-templatebuilder > avia-shortcodes > portfolio.php. Find this code on line 373:

    $output .= "<div class='{$class} grid-sort-container isotope {$style_class}-container with-{$contents}-container grid-total-{$total} grid-col-{$columns} grid-links-{$linking}' data-portfolio-id='{$container_id}'>";
    

    Replace it with this:

    //append pagination
    			if($paginate == "yes" && $avia_pagination = avia_pagination($this->entries->max_num_pages, 'nav')) $output .= "<div class='pagination-wrap pagination-{$post_type}'>{$avia_pagination}</div>";
    			
    			$output .= "<div class='{$class} grid-sort-container isotope {$style_class}-container with-{$contents}-container grid-total-{$total} grid-col-{$columns} grid-links-{$linking}' data-portfolio-id='{$container_id}'>";

    Cheers!
    Ismael

    in reply to: Widget styling #308640

    Hey!

    The hungarian language page got a different page id. You need to use page-id-54502 on the css modification. Note that you need to add all css modifications separately on all the languages’ Quick CSS field.

    .page-id-46640 .main_color .avia-builder-widget-area dt, .page-id-47811 .main_color .avia-builder-widget-area dt, .page-id-46640 .main_color .avia-builder-widget-area dd, .page-id-47811 .main_color .avia-builder-widget-area dd, .page-id-46094 .main_color .widget_display_stats dt, .page-id-46094 .main_color .widget_display_stats dd {
    background-color: none;
    float: left;
    background: none;
    padding: 0;
    padding-left: 20px;
    }

    Regards,
    Ismael

    in reply to: Moving Menu Bar to page title bar area #308638

    Hi!

    I’m sorry but you’re creating too much thread regarding the menu. They have the same context. Please avoid duplicating threads:

    https://kriesi.at/support/topic/changing-static-inactive-link-color/
    https://kriesi.at/support/topic/transparent-menu-below-header-cant-change-back-to-colored/
    https://kriesi.at/support/topic/broken-menu-below/

    Regards,
    Ismael

    in reply to: Tabs #308635

    Hey!

    You can use this instead to change the color of the tab title:

    .tab_titles div:first-child {
    background-color: red !important;
    }
    
    .tab_titles div:nth-child(2) {
    background-color: blue !important;
    }

    The div:first-child is the first tab and div:nth-child(2) is the second, so on and so forth. Refer to this link for more info about css child selectors: http://www.w3schools.com/cssref/sel_nth-child.asp

    Best regards,
    Ismael

    in reply to: Mobile menu – background color #308633

    Hey!

    There’s a missing bracket on the media query. It should be like this:

    @media only screen and (max-width: 767px) {
    .main_color {
    background: none !important;
    }
    }

    Cheers!
    Ismael

    in reply to: Broken Menu Below #308632

    Hey yes9310!

    Thank you for using Enfold.

    The logo is in the way of the menus. Please use this:

    strong.logo {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Menu below main menu #308630

    Hey!

    Thank you for visiting the support forum.

    You can pull the submenu upwards with this:

    .av-main-nav ul {
    top: 80px;
    }

    Regards,
    Ismael

    in reply to: Blog Post Widget problem #308629

    Hey debenm!

    Thank you for using Enfold.

    You can use this on Quick CSS or custom.css to break the word:

    .entry-content {
    word-break: break-word;
    }

    Best regards,
    Ismael

    in reply to: Upgraded to Enfold 2.9.1 and $headerS variable is gone #308627

    Hi!

    Glad you solved it. If you still have questions, let us know. :)

    Regards,
    Ismael

    in reply to: Separater between blog post items #308626

    Hi MacMyDays!

    Thank you for using Enfold.

    You can send a screenshot on how you want the post list to look like but if you want an alternate background color, you can use this on QuicK CSS or custom.css

    .post:first-child {
    padding-top: 0px;
    }
    
    .post {
    border-bottom: 1px solid black !important;
    padding: 30px 15px 0 15px
    }
    
    .post:nth-child(odd) {
    background: blue;
    }
    
    .post:nth-child(even) {
    background: red;
    }

    Regards,
    Ismael

    in reply to: Editing layout elements. #308623

    Hey _Hegel!

    Thank you for using the theme.

    The 1/3 columns width can be change using this on Quick CSS or custom.css:

    div .av_one_third {
    margin-left: 2%;
    width: 32%;
    }

    You can find all column sizes on css > grid.css. Go this section:

    /* Columns for better content separation
    ================================================== */
    

    Cheers!
    Ismael

    in reply to: create selected page links in 1/4 footer column #308622

    Hey mostlymedia!

    Thank you for using Enfold.

    You can use the Custom Menu widget for the menu and the Widget Logic plugin to create display different widgets per language. Please refer to this link for more info: http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    Cheers!
    Ismael

    in reply to: Change height of th eslim header #308620

    Hi!

    For the header height, please use this instead:

    #header_main .container, .main_menu ul:first-child > li a {
    height: 30px !important;
    line-height: 30px !important;
    }

    No, it’s not possible to move the border position.

    Cheers!
    Ismael

    in reply to: Table width and other modifications #308617

    Hey!

    Thank you for using Enfold.

    Yes, it is possible to change the width of the table columns using css but we won’t be able to know if it will work on every cases. Use this on Quick CSS or custom.css:

    tr, td {
    width: 19%;
    }

    Change the background color to white using this:

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

    Again, it is much better to create your own table if you want flexibility and control over the appearance of the object.

    Regards,
    Ismael

    in reply to: Changing static inactive link color #308610

    Hey!

    Please refer to your previous thread. If possible, avoid creating duplicated post: https://kriesi.at/support/topic/transparent-menu-below-header-cant-change-back-to-colored/#post-308609

    Regards,
    Ismael

    Hi yes9310!

    Thank you for visiting the support forum.

    You can add this on Quick CSS or custom.css to change the background color of the menu container to black:

    div#header_main_alternate {
    background: black;
    }

    Best regards,
    Ismael

    in reply to: Footer mit Logos anpassen #308606

    Hi czaz!

    Thank you for using the theme.

    Have you tried using the Partner/Logo element? I’m sorry but I’m not sure how you will be able to make it look that way if it is included on 1/4 column inside the footer section.

    Regards,
    Ismael

    in reply to: Extra BR tags added to code but only on some pages. #308604

    Hey!

    Looks like you created the footer widgets manually using html codes and shortcodes. This may cause some layout issues. Please try to create the footer using the Footer Column widget areas or you can manually remove the br tags.

    Cheers!
    Ismael

    in reply to: three little bugs found I cannot solve #308596

    Hey vhgb!

    Thank you for using Enfold.

    Please post the actual website url here. I tried http://dev.deboedrukker.nl/ but it’s not loading.

    Best regards,
    Ismael

    in reply to: Single Product Pages Sidebar #308595

    Hey!

    Do you mind providing the login credentials? We would like to check it. Please set it as a private reply.

    Regards,
    Ismael

    in reply to: Fix elements on scroll #308587

    Hi Lucas!

    Thank you for using Enfold.

    I tested this on my installation and its working great. Problem is, this will affect all tabs all over the site. You can add a unique selector for the tab elements or any other content/media elements on the advance layout builder. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');
    

    Edit the tab element then apply a unique css selector using the Custom CSS field. Use “fixedtab” for example. You can then change this line on your code:

    var childElement = document.getElementsByClassName("tabcontainer")[0];
    

    To this:

    var childElement = document.getElementsByClassName("fixedtab")[0];
    

    Regards,
    Ismael

    in reply to: Next and Previous Post Navigation is in reversed order #308585

    Hey!

    Like Josue said, this is a WP limitation and aside from the suggestions above, I don’t think we will be able to help you further. The customization you’re asking falls beyond the scope of support. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    Thank you for understanding.

    Cheers!
    Ismael

    Hey!

    Thank you for using Enfold.

    Please try this:

    function avia_admin() {
    	remove_action('admin_bar_menu', 'avia_backend_admin_bar_menu', 99);
    }
    add_action( 'init', 'avia_admin', 1);
    

    Cheers!
    Ismael

    in reply to: max width portfolio grid #308583

    Hi sky19er!

    Thank you for using Enfold.

    Please edit the page then place the Portfolio Grid element inside a 1/1 column layout.

    Regards,
    Ismael

    in reply to: Drop down menu on all screen sizes. #308582

    Hi apps2go!

    Thank you for using Enfold and the screenshot.

    I’m sorry but have you gotten around setting up the site at least. We really like to help you but first, we need to see an actual website. You can change the social icon hover with this:

    #top .social_bookmarks li {
    width: 40px;
    }
    
    #top .social_bookmarks li a {
    width: 40px;
    line-height: 40px;
    min-height: 40px;
    }

    Cheers!
    Ismael

    in reply to: Avia Layout Builder Beiträge/Posts #308580

    Hi!


    @s_sscher
    : Make sure that you’re running Enfold version 2.9.2. Go to Enfold > Blog Layout panel then set the Blog Style to the very last option. This will enable the blog to be edited using the Advance Layout Builder.

    Best regards,
    Ismael

    in reply to: Homepage is showing metadata & keywords from latest posts #308578

    Hi!

    Thank you for using Enfold.

    Please reset the settings on Settings > Reading > Front page displays to default. Try to set the Frontpage and Blog page on Enfold > Theme Options > Frontpage Settings.

    Cheers!
    Ismael

    in reply to: Any Image Suggestions to Improve Google Speed ? #308577

    Hi Ed!

    Thank you for using Enfold.

    Aside from optimizing the images with EWWW image optimizer, install the wp-smushit plugin, run once to remove jpeg extra data then uninstall. You might want to use minify or script compression plugins like BWP Minify. I’m sure you’re already using some kind of cache plugin but if not, you can use W3 Total Cache or WP Super Cache. And then you can enable CDN to speed up the site.

    Regards,
    Ismael

    in reply to: wordpress noob how do I set the magazine look? #308573

    Hey!

    Glad it’s there now. If you still have any questions, let us know. :)

    Regards,
    Ismael

    in reply to: Logo and Menu Styling #308572

    Hi!

    Thank you for using Enfold.

    Do you mind providing a screenshot on how you want the header to look like? You can use imgur, dropbox etc. Place the link here. Regarding the logo on mobile device, try to use this:

    @media only screen and (max-width: 767px) {
    .responsive .logo a, .responsive .logo img {
    margin: 0 auto;
    max-width: 100%;
    height: 60px !important;
    max-height: 60px !important;
    }
    }

    Best regards,
    Ismael

Viewing 30 posts - 56,341 through 56,370 (of 67,207 total)