Forum Replies Created
-
AuthorPosts
-
Hi,
You have different logo sizes. First, attach them on a canvas with a uniform size before you upload them.
Regards,
Ismael
Hi,
1.) What type of header do you have?
2.) Adding your icons is a bit complicated for now. Kriesi will make it easier on future updates.
You can follow this link: https://kriesi.at/support/topic/youtube-icon#post-117381
Regards,
Ismael
Hi,
Let me tag Devin. The theme is compatible with mobile devices especially those with OS X or MAC OS.
http://responsinator.com/?url=http%3A%2F%2Fkriesi.at%2Fthemes%2Fenfold%2F
Regards,
Ismael
Hi,
Edit admin > includes > register-admin-options.php, find this code on line 277.
'Yellowtail'=>'Yellowtail',
Below, add this code.
'Ropa Sans'=>'Ropa Sans',
Go to Theme Options > Styling > Heading Font, select Ropa Sans.
You can apply the font on your custom.css.
h1, h2, h3, h4, h5, h6, p {
font-family: "Ropa Sans", Times New Roman, Helvetica, Arial, sans-serif;
}Regards,
Ismael
Hi,
Kriesi suggested this on another thread.
http://wordpress.org/plugins/nimble-portfolio/
Regards,
Ismael
Hi,
You’re seeing the dummy widgets. Go to Appearance > Widgets, supply the Shop Overview Page widget area with the widgets you like.
The demo shop page includes the Meta and the Woocomemerce Recent Products widgets.
Regards,
Ismael
Hi,
On Screen Options > enable the Avia Layout Builder.
Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
Hi,
You can use media queries.
/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
}Regards,
Ismael
Hi,
We suggest that you upgrade the whole theme files to fix other issues that you may encounter in the future. Extract the main theme zip file then upload via FTP or your cpanel.
Regards,
Ismael
Hi,
Why are you trying to insert css codes on text block? You can add them on custom.css.
Please let us know if the direct html code work. We can’t give you support for 3rd party plugins but we’ll try our best to help.
Regards,
Ismael
Hi,
Edit your homepage, go Advance Layout Editor > Media Elements > Insert the slider you like.
You can specify the excerpt for post items by using the <!–more–> tag.
http://en.support.wordpress.com/splitting-content/more-tag/
Or enable the excerpt metabox on Screen Options > Excerpt.
Regards,
Ismael
Hi,
Access your cpanel go to your database through phpmyadmin. Import this xml file.
http://www.mediafire.com/download/0795z38e9e933wc/wp_layerslider.xml
Regards,
Ismael
Hi,
You can also try these
http://wordpress.org/plugins/share-this/
http://wordpress.org/plugins/addthis/
Regards,
Ismael
Hi,
Go to Theme Options > Header > Responsive Header Main Menu, select “Display as Slideout Menu”.
Regards,
Ismael
June 28, 2013 at 5:00 am in reply to: Fullscreen slider with content as soon on the v7 homepage of Enfold demo #127015Hi,
On the Fullwidth Slider options, after you insert the images, click on an image again then configure the options. You can add the caption title, description and specify the caption position.
Regards,
Ismael
June 28, 2013 at 2:46 am in reply to: How to change the word "All" for the Portfolio Category Filter ? #125914Hi,
Are you talking about the text color of the menu at the bottom?
Please try this:
#top .sub_menu_socket ul:first-child > li > a {
color: red;
}Regards,
Ismael
Hi,
What type of header are you using?
Try this:
#top #menu-item-search > a {
position: absolute;
left: -930px;
top: 10px;
}
.avia-search-tooltip.avia-tt {
top: 85px !important;
}Regards,
Ismael
Hi,
Increase the php memory limit again. Upgrade to Enfold 1.7.
Switch the Avia Builder to debug mode Edit functions.php, 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";
}You will be able to see the actual shortcode below the Advance Layout Editor.
Regards,
Ismael
Hi,
You can only embed videos from youtube, vimeo etc.
Though there are various plugins that you can use. Not sure if they are compatible with the theme.
http://wordpress.org/plugins/vipers-video-quicktags/
Regards,
Ismael
Hi,
Kriesi said it will be fix on the next update. Do you have Enfold 1.7?
Regards,
Ismael
Hi,
Please add this on your custom.css or QUick CSS
@media only screen and (max-width: 767px) {
.responsive .main_menu {
position: static;
display: none;
}
}Cheers,
Ismael
Hi,
Edit framework > php > function-set-avia-frontend.php, find the code online 817.
if(!function_exists('avia_which_archive'))
You can change the text below:
if ( is_category() )
{
$output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
}
elseif (is_day())
{
$output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
}
elseif (is_month())
{
$output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
}
elseif (is_year())
{
$output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
}Regards,
Ismael
-
AuthorPosts