Forum Replies Created
-
AuthorPosts
-
January 10, 2014 at 9:26 am in reply to: Little White Line with tiny upwards pointing Arrow at Bottom of Main Menu #207876
Hi deyowulf!
You can remove it using this on Quick CSS:
.avia-menu-fx { display: none; }
Change the color using this:
.header_color .avia-menu-fx .avia-arrow, .header_color .avia-menu-fx { background: red; }
Regards,
IsmaelHey deyowulf!
You can use this:
#top .header_color input[type='text'] { color: blue; } ::-webkit-input-placeholder { /* WebKit browsers */ color: red } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: red; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: red; } :-ms-input-placeholder { /* Internet Explorer 10+ */ color: red; }
Cheers!
IsmaelHi!
I’m sorry but I don’t have an iOS device to check this with. Please wait for Devin’s and Josue’s response.
Cheers!
IsmaelHey Rohan!
1.) Add this on Quick CSS:
.iconlist_content_wrap { padding-top: 13px; }
2.) You can remove the icon background color using this:
.main_color .avia-icon-list .iconlist_icon { background-color: transparent; }
Change the icon color using this:
.avia-icon-list .iconlist_icon { color: gray; }
3.) Change the background color of the iconbox content using this:
.main_color.iconbox_top .iconbox_content { background-color: gray; }
Regards,
IsmaelHey mgma!
Please hire a freelance developer to add the sidebar navigation for you. You can visit http://werkpress.com/.
Cheers!
IsmaelHey Rohan!
You can use this on your custom.css or Quick CSS:
.av_font_icon.av-icon-style-border .av-icon-char { padding: 10px; }
Cheers!
IsmaelHey NanaKuo!
Can you please give us a link to the product page? We would like to inspect it.
Best regards,
IsmaelHey corporateassets!
The best way is to override the old theme files directly. Watch this video by Devin: https://vimeo.com/channels/aviathemes/64927356
Best regards,
IsmaelHi!
Please use this:
.main_menu ul:first-child > li > a { font-size: 15px; }
Regards,
IsmaelHey!
Create a folder named “font’ on the enfold theme folder. Place the font .ttf file inside the font folder. Add this on css > custom.css file:
@font-face { font-family: Edwardian Script ITC; src: url(../font/nameofthefont.ttf); }
You can specify the font family on Quick CSS or custom.css:
h1, h2, h3 { font-family: Edwardian Script ITC; }
Best regards,
IsmaelHey Lead!
You can add something like this on Quick CSS or custom.css:
body, body p { font-size: 15px; }
Best regards,
IsmaelHi Cam!
Please wait for another 12 hours or download the theme manually on your themeforest account. Update the theme via FTP. Watch this video by Devin: http://vimeo.com/channels/aviathemes/67209750
Best regards,
IsmaelHey Simon!
Please refer to this link on how to override template builder’s shortcode function on a child theme: https://kriesi.at/support/topic/portfolio-meta/#post-134009
Cheers!
IsmaelHey!
Please refer to this link: https://kriesi.at/support/topic/bbpres-no-sidebar-in-topics/
Cheers!
IsmaelHey motylanogha!
Edit config-templatebuilder > avia-shortcodes > blog.php, find this code on line 297:
$query = array( 'paged' => $page, 'posts_per_page' => $params['items'], 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'tax_query' => array( array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN'))); } else { $query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'post_type' => $params['post_type']); }
Replace it with:
$query = array( 'paged' => $page, 'posts_per_page' => $params['items'], 'orderby' => 'name', 'order' => 'ASC', 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'tax_query' => array( array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN'))); } else { $query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'orderby' => 'name', 'order' => 'ASC', 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'post_type' => $params['post_type']); }
Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
IsmaelJanuary 10, 2014 at 7:10 am in reply to: Portfolio permailnk change error on latest version **URGENT** #207833Hi!
The avia_flush_rewrites function is not required anymore. The avia_flush_rewrites code forced wp to rewrite the rules when the user saved the settings, the custom rewrite rules cause too much trouble especially with WPML. Dude created some new code which registers new permalink options on the Settings > Permalinks page. The user can only change the permalink structure on the wordpress settings.
Regards,
IsmaelHi!
Can you please give us a link to the actual page with the slider?
Regards,
IsmaelJanuary 10, 2014 at 7:02 am in reply to: Problem with Fullscreen slider on computer browser only #207829January 10, 2014 at 7:01 am in reply to: Chrunbee Integration / php implementation / javascript implementation #207828Hey Jordache!
This is way beyond of what we can do as support team. Please hire a freelance developer to help you with the Chrunbee Integration. You can visit http://werkpress.com/.
Regards,
IsmaelJanuary 10, 2014 at 6:57 am in reply to: sorting portfolio items : how to display categories in a different order ? #207827Hi!
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 442:
//get all categories that are actually listed on the page $categories = get_categories(array( 'taxonomy' => $params['taxonomy'], 'hide_empty'=> 0 ));
Replace it with:
$categories = get_categories(array( 'taxonomy' => $params['taxonomy'], 'hide_empty'=> 0, 'orderby' => 'name', 'order' => 'DESC' ));
Best regards,
IsmaelJanuary 10, 2014 at 6:53 am in reply to: Two logo images – one for desktop site and one for mobile #207826Hey!
You can add this on your Quick CSS or custom.css to change the background of the logo then remove the logo image on mobile device view:
@media only screen and (max-width: 767px) { .responsive .logo { background: url('http://heartland.estlandpreview2.com/wp-content/themes/heartland/images/logo_header_mobile.png') no-repeat; position: relative; top: 50px; left: 30px; } .responsive .logo img { margin: 0 auto; display: none; } }
Best regards,
IsmaelHi flowpsychicarts!
1.) Yes, you can deselect the Blog on Theme Options > Where do you want to display Blog? then create a new page. Insert the Easy Slider then the Blog Posts element.
2.) We don’t have an access with the plugin, you might want to contact the plugin author. Please post the login details here as a private reply. We would like to inspect the website.
3.) You can adjust the left margin of the inner sidebar using this on your Quick CSS:
.inner_sidebar { margin-left: 20px; }
Best regards,
IsmaelHi jodyannthomas!
What space? Can you please give us a link to the actual website? I guess it can be easily fix with css. Enfold 2.4.5 is available on the Theme Update, you might want to upgrade your installation.
Best regards,
IsmaelHi!
You can use this:
.main_color h5 span a:hover { color: blue !important; }
Change the color value.
Regards,
IsmaelHi!
Have you tried using the Special Heading element? Can you please give us a link to the actual page where you’re trying to add the title?
Best regards,
IsmaelHi Tali!
Do you encounter any issue with the older version of Layer Slider? Kriesi is working on few other updates and may tackle the plugin improvement on future Enfold updates.
Regards,
Ismael -
AuthorPosts