Forum Replies Created
-
AuthorPosts
-
Hi,
Please add this on your custom.css to change the menu color
.main_menu a {
color: white !important;
}To change the active page color, use this
.current-menu-item > a {
color: black !important;
}For the submenu hover, you can use this
.header_color .main_menu .menu ul li a:hover {
background-color: white;
color: orange !important;
}Regards,
Ismael
Hi,
Create a new test site. Import the dummy data then go to LayerSlider WP. Copy the code under Export sliders. Go back to your site, again, go to LayerSlider WP > paste the code under Import sliders, click Import.
Regards,
Ismael
Hi,
Just edit your homepage, look for “Header Settings”, select “Don’t display the Header”.
Regards,
Ismael
Hi,
Is Desktop Wallpaper a category for your portfolio entries? Please make it a category then do Dude’s code above. This will only work if you are not using the Advance Layout Editor for your portfolio items.
Regards,
Ismael
Hi,
1.) The sidebar expands when there are widgets present. It has no definite height. You need a javascript of some sort to make the sidebar inherit the height of the content area. A simple solution is to define a minimum height for the sidebar but this is not flexible and may not be appropriate for all types of pages. Add this on your Quick CSS or custom.css
#top #main .sidebar {
background: red;
min-height: 600px;
}2.) You can add this on your custom.css or Quick CSS.
.widgettitle {
border-bottom: 1px dotted red;
padding-bottom: 10px;
}3.) To add a bottom separator, you can use this
.widget {
border-bottom: 1px solid black;
}Regards,
Ismael
Hi,
Glad they are fixed.
For the header background, please follow these links.
https://kriesi.at/support/topic/mega-menu-bug#post-108100
https://kriesi.at/support/topic/header-background-image-2
Cheers,
Ismael
Hi,
Sorry for the delay.
I tested your website using Chrome, I added a red text “Add add add” and I saved it successfully. It does took a long while. Please try to disable the plugins then activate them one at a time. Check if they have something to do with the slider.
I didn’t remove the red text. Please remove it.
Regards,
Ismael
Hi,
Create a page, go Advance Layout Editor. Under Content Element > Insert the Blog Posts element. You can change the layout under “Blog Style”. Look for Blog Content length, choose Excerpt with Read more link.
Regards,
Ismael
Hi,
You can change the image size on functions.php
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columnsThe code above are thumbnail size for 2,3 or 4 column portfolio. Regenerate the thumbnails after.
Regards,
Ismael
Hi,
Please edit your homepage, look for Portfolio Grid. Edit it then find Post Number, select the number of items that should be displayed.
Regards,
Ismael
Hi,
You don’t need to build different pages for your videos. Just create a page, insert columns, on each columns insert an image which is linked to a video url.
You can insert videos on LayerSlider WP.
Regards,
Ismael
Hi,
Just create a new portfolio item, go Advance Layout Editor > Media Elements > Insert the Gallery element.
Regards,
Ismael
Hi,
Create a new page. Go to Advance Layout Editor > Plugin Additions > Insert the Product Grid element. Select the number of columns. Use this page as your shop page instead.
Please download the latest version of the theme. It might fix the issue.
Regards,
Ismael
May 25, 2013 at 5:01 am in reply to: can't get a 1 pt rule on the left of the sidebar container… #120645Hi,
Just add this on your custom.css or Quick CSS
.blog-categories.minor-meta {
display: none;
}Regards,
Ismael
Hi,
Use the Advanced Layout Editor, go Media Elements, insert Gallery. Click Add/Edit Gallery, click on the Images that you want once.
Regards,
Ismael
Hi,
Open config-templatebuilder > avia-shortcodes > testimonials.php, find this code
//final output
$output .= "<div class='avia-testimonial {$class}'>";
if($grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-content'>";
$output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
$output .= "</div>";
$output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
if(!$grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-meta-mini'>";
if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
if($link) $output .= " – <a class='avia-testimonial-link' href='{$link}'>{$linktext}</a>";
$output .= "</div>";
$output .= "</div>";
$output .= "</div>";Replace it with
//final output
$output .= "<div class='avia-testimonial {$class}'>";
if($grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-content'>";
$output .= wpautop(ShortcodeHelper::avia_remove_autop($content));
$output .= "</div>";
$output .= "<div class='avia-testimonial-meta'><div class='avia-testimonial-arrow-wrap'><div class='avia-arrow'></div></div>";
if(!$grid) $output .= $avatar;
$output .= "<div class='avia-testimonial-meta-mini'>";
if($name) $output .= "<strong class='avia-testimonial-name'>{$name}</strong>";
if($subtitle) $output .= "<span class='avia-testimonial-subtitle'>{$subtitle}</span>";
if($link) $output .= " – <a class='avia-testimonial-link' target='_blank' href='{$link}'>{$linktext}</a>";
$output .= "</div>";
$output .= "</div>";
$output .= "</div>";Cheers,
Ismael
Hi,
Please use this on your custom.css or Quick CSS
.widgettitle {
color: red !important;
}
.widget {
color: blue !important;
}Regards,
Ismael
Hi,
Inspect the body class for the current page with the promobox.
.page-id-734 .main_color .av_promobox{
background: #fcfcfc;
}This will only change the promobox background color on page with the id 734.
Regards,
Ismael
Hi,
Enfold uses Entypo Fontello fonts to create the icons.
http://www.entypo.com/characters/
What icons would you like to add and where?
Regards,
Ismael
Hi,
Go to Appearance > Widget, remove all the widgets on Displayed Everywhere widget area.
The navigation will only work if there are page hierarchy. You can define page hierarchy on Page Attributes, select the Parent page. Please import the dummy data then check the Pages.
You can use this plugin http://wordpress.org/plugins/wp-google-fonts/.
Regards,
Ismael
Hi,
You can add additional javascript on functions.php. Find this code
//register js
wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'avia-compat' );
wp_enqueue_script( 'avia-default' );
wp_enqueue_script( 'avia-shortcodes' );
wp_enqueue_script( 'avia-prettyPhoto' );
wp_enqueue_script( 'avia-html5-video' );You can add your own there. We cannot assure you that every javascript is compatible with the theme.
To register another script add something like this
wp_register_script( 'new-script', $template_url.'/js/new-js.js', 'jquery', "1", true);
Then link the new script with this
wp_enqueue_script( 'new-script' );
Regards,
Ismael
Hi,
I’m sorry but it is not possible. You can’t see it on the theme demo. What you can do is to create a full width page, insert 1/5 or 1/4 columns, insert the image element then link it manually to a video url. Just like what you did here http://essentialmessagemarketing.com/portfolio-item/portfolio-test-1/. Click on the image.
Regards,
Ismael
May 25, 2013 at 2:24 am in reply to: Add description in gallery images lightbox- Enfold Theme #121154Hi,
It is not possible according to Kriesi.
https://kriesi.at/support/topic/caption-in-lightbox
Regards,
Ismael
Hi,
Just add this on your custom.css
.trail-end {
display: none !important;
}Regards,
Ismael
-
AuthorPosts