Forum Replies Created
-
AuthorPosts
-
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!
IsmaelHey!
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,
IsmaelHi!
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,
IsmaelHey!
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,
IsmaelHey!
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!
IsmaelHey yes9310!
Thank you for using Enfold.
The logo is in the way of the menus. Please use this:
strong.logo { display: none; }Regards,
IsmaelHey!
Thank you for visiting the support forum.
You can pull the submenu upwards with this:
.av-main-nav ul { top: 80px; }Regards,
IsmaelHey 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,
IsmaelAugust 25, 2014 at 6:36 am in reply to: Upgraded to Enfold 2.9.1 and $headerS variable is gone #308627Hi!
Glad you solved it. If you still have questions, let us know. :)
Regards,
IsmaelHi 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,
IsmaelHey _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!
IsmaelHey 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!
IsmaelHi!
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!
IsmaelHey!
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,
IsmaelHey!
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,
IsmaelAugust 25, 2014 at 6:03 am in reply to: Transparent menu below header can't change back to colored #308609Hi 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,
IsmaelHi 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,
IsmaelHey!
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!
IsmaelHey 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,
IsmaelHey!
Do you mind providing the login credentials? We would like to check it. Please set it as a private reply.
Regards,
IsmaelHi 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,
IsmaelAugust 25, 2014 at 4:54 am in reply to: Next and Previous Post Navigation is in reversed order #308585Hey!
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!
IsmaelAugust 25, 2014 at 4:50 am in reply to: not showing enfold theme adons in admin toolbar (aka WordPress Admin Bar) #308584Hey!
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!
IsmaelHi sky19er!
Thank you for using Enfold.
Please edit the page then place the Portfolio Grid element inside a 1/1 column layout.
Regards,
IsmaelHi 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!
IsmaelHi!
@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,
IsmaelAugust 25, 2014 at 4:40 am in reply to: Homepage is showing metadata & keywords from latest posts #308578Hi!
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!
IsmaelHi 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,
IsmaelHey!
Glad it’s there now. If you still have any questions, let us know. :)
Regards,
IsmaelHi!
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 -
AuthorPosts
