Forum Replies Created
-
AuthorPosts
-
Hi,
Open js > avia.js, find this code
if(st < el_height/2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}Replace it with
if(st < el_height/1.2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/1.2;
//header.addClass('shadow');
}This will still shrink the logo but not so much. :)
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS.
.alternate_color {
background-color: blue;
}You can also change the color settings on Enfold > Theme Options > Styling Tabs. Scroll below.
Regards,
Ismael
Hi,
I’m not sure where did Dude get the code, I can’t find it myself. Please give this one a roll.
#scroll-top-link {
font-family: 'entypo-fontello' !important;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You can change it on the Promo Box options, look for Button Color. You can also Aadd this on your custom.css or Quick CSS.
.av_promobox .avia-button {
background-color: red;
border-color: pink;
color: white;
}Change the property values.
Regards,
Ismael
Hi,
Can you give us a link to your website? The theme is compatible with Firefox and IE8 above.
Are you running on a MAC OS?
Regards,
Ismael
June 23, 2013 at 5:22 pm in reply to: RoyalSlider – Compatible? Idea of a Touch Slider that would play well w/ Enfold? #124634Hi,
I’m sorry but I can’t fix the issue. Please contact the creator of the plugin. Maybe they can shed some light on the problem.
Regards,
Ismael
Hi,
Please give us a link to the category page. Maybe we can hide the image via CSS.
Regards,
Ismael
Hi,
Yes, that is correct.
You change the border color of the header. Add this on your custom.css or Quick CSS
.header_color div {
border-color: red;
}For the breadcrumb text, use this
.breadcrumb-trail span {
color: blue;
}
.breadcrumb-trail span a {
color: blue !important;
}Regards,
Ismael
Hi,
You can override the blank page background color with this.
.page-template-template-blank-php #wrap_all {
background: black;
}Add the code on your custom.css or Quick CSS.
Regards,
Ismael
Hi,
You should probably follow this link. See mine and formateins’ solution.
https://kriesi.at/support/topic/some-problems-404-permalink-and-wpml
Regards,
Ismael
June 21, 2013 at 6:34 am in reply to: How do I remove top header bar, and reduce the amount of white space? #125887Hi,
1. Remove the top bar above the header
Add this on your custom.css or Quick CSS
#header_meta {
display: none;
}2. Reduce the whitespace found across all pages between the menu and text
I’m not sure what whitespace you’re referring to since the link you gave almost have no content in it.
.template-page.content.twelve.alpha.units {
padding-top: 10px;
}3. Reduce the white space above and below the horizontal ruler.
You can use this
.hr {
height: 10px;
margin: 10px;
}Adjust the values.
Regards,
Ismael
Hi,
Edit config-templatebuilderavia-shortcodes portfolio.php, find this code
$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";
foreach($categories as $category)
{
if(in_array($category->term_id, $current_page_cats, true))
{
$output .= "<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
$output .= "<a href='#' data-filter='".$category->category_nicename."_sort' class='".$category->category_nicename."_sort_button' >".$category->cat_name."</a>";
}
}Replace it with:
//$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";
foreach($categories as $category)
{
if(in_array($category->term_id, $current_page_cats, true))
{
$output .= "<span class='text-sep ".$category->category_nicename."_sort_sep'>/</span>";
$output .= "<a href='#' data-filter='".$category->category_nicename."_sort' class='".$category->category_nicename."_sort_button' >".$category->cat_name."</a>";
}
}Regards,
Ismael
Hi,
Sorry my bad. Edit config-templatebuilderavia-shortcodesiconlist.php, find this code on line 208 perhaps
$atts['title'] = "<a href='{$atts['link']}' title='".esc_attr($atts['title'])."'>{$atts['title']}</a>Replace it with:
$atts['title'] = "<a target='_blank' href='{$atts['link']}' title='".esc_attr($atts['title'])."'>{$atts['title']}</a>Regards,
Ismael
June 21, 2013 at 6:03 am in reply to: RoyalSlider – Compatible? Idea of a Touch Slider that would play well w/ Enfold? #124632Hi,
You can use the Product Variations: http://docs.woothemes.com/document/product-variations/
Regards,
Ismael
June 21, 2013 at 5:28 am in reply to: Unlinking the links of the Enfold WooCommerce Dropdown #125841Hi,
Not sure if this is the one you’re looking for. Add this on your custom.css or Quick CSS. This will disable the link.
.cart_list.product_list_widget li a {
cursor: default;
pointer-events: none !important;
}Regards,
Ismael
Hi,
Can you give us a link to your website?
You can upload an image using the Image element under Media Elements tab if you are using the Advance Layout Editor. You can also use the default Add Media button on top of the editor.
Regards,
Ismael
June 21, 2013 at 5:15 am in reply to: Background colour of text block and image change on hover #125389Hi,
You can switch the Advance Layout Editor to debug mode. This way you will see the actual shortcode below the Avia Builder. Edit functions.php then find this code.
if(isset($avia_config['use_child_theme_functions_only'])) return;Below add this code
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}Go to your Advance Layout Editor and scroll below to see the actual shortcode.
Regards,
Ismael
Hi,
When editing a post, go to Visual mode then look for the Magic Want or Insert Shortcode button.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS to adjust the width.
#menu-item-2350 > .avia_mega_div {
width: 1024px;
}You might need media queries to adjust the width on different resolutions.
@media only screen and (min-width: 768px) and (max-width: 1024px) {
#menu-item-2350 > .avia_mega_div {
width: 700px;
}
}Hi,
Please add this on your custom.css or Quick CSS
#top input[type="text"] {
margin-bottom: 0;
}
.iphorm-inner.iphorm-inner-1 > br {
display: none;
}Regards,
Ismael
Hi,
Did you change anything on the CSS? You’re mega menu seems to be jumping on random places.
Add this on your custom.css OR Quick CSS
menu-item-4611 > .avia_mega_div {
right: -40px !important;
}
#menu-item-4343 > .avia_mega_div {
right: -100px !important;
}Regards,
Ismael
Hi,
You can use this on your custom.css or Quick CSS
.archive .big-preview.single-big {
display: none;
}Regards,
Ismael
-
AuthorPosts
