Forum replies created
Hi there,
Thanks for writing in,
It seems like a plugin conflict so I would advise try disabling your plugins all at once and see if the problem remains, if its solved then you’ll know that which one of the plugin makes it suffer by enabling the plugins again.
Thanks.
Hi there,
Thanks for writing in,
You can achieve that by using a custom CSS code. Please add the following code under Appearance > Theme Options > Custom CSS:
img.img-responsive {
box-shadow: none;
background: none;
}
Thanks.
Hi there,
Thanks for writing in,
If you wish to eliminate that extra space, you can add following code under Appearance > Theme Options > Custom CSS:
.menu-container .container {
height: 0px;
}
Thanks.
Hi Elihah,
You can achieve that by using a CSS code. Please add following code under Appearance > Theme Options > Custom CSS:
#search-text-top {
width: 100% !important;
opacity: 1 !important;
visibility: visible !important;
text-indent: 0px !important;
background-color: #fff;
font-size: 12px !important;
font-weight: normal !important;
}
Thanks.
You’re welcome! 🙂
Hi there,
Thanks for writing in,
You can disable the search box by going under Appearances > Theme Options > Header and uncheck the box of “Enable searchbox in main menu” as per shown here: http://prntscr.com/7nhwwi.
Thanks.
Hi Patric,
I’m assuming that you have a child theme installed in your website. So you can simply add the following code in your child theme’s functions.php file and if your functions.php file is blank, add following line before the provided code <?php:
// =============================================================================
// Translate string using 'gettext' filter
// =============================================================================
add_filter('gettext', 'custom_strings_translation', 20, 3);
function custom_strings_translation( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Item(s)' :
$translated_text = __( 'REPLACE_THIS_WITH_TRANSLATION', 'evolve' );
break;
}
return $translated_text;
}
REPLACE_THIS_WITH_TRANSLATION Replace this line with the translation you want.
Thanks.
Hi there,
Thanks for writing in,
You can find column short code under Visual editor > Shortcode button > columns. There you will find all of the combinations and how to use different columns as per shown here: http://prntscr.com/7n2c8o.
Thanks.
Hi Elijah,
Thanks for writing in, you can achieve that by adding following code under Appearance > Theme Options > Custom CSS:
span.glyphicon.glyphicon-align-justify:after {
content: " Menu ";
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 20px;
}
Thanks.
Hi efrain,
In the version of 2.5.0 there is no option to change the mobile menu color so you can achieve that by custom CSS codes. Here are three codes to handle background colors hover colors and etc. Please add following code under Appearance > Theme Options > Custom CSS:
.mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector, #mobile-nav {
background-color: #e3e3e3 !important;
}
.mobile-nav-holder .mobile-selector, .mobile-topnav-holder .mobile-selector, #mobile-nav li a, #wrapper .header-social .mobile-topnav-holder li a, .catalog-ordering a, .order-dropdown > li:after, .order-dropdown ul li a {
color: #FFB917 !important;
}
#mobile-nav li a:hover {
background-color: #81d742 !important;
}
Hope this helps!
Thanks.