Forum Replies Created
-
AuthorPosts
-
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
Hi!
Please use this instead.
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 1024px) {
.responsive #top #main .sidebar {display:block !important; }
}Best regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.page-id-40 .big-preview.multi-big {
width: 302px !important;
height: 225px !important;
margin: 0 auto 40px auto;
}
.page-id-40 .fullsize .template-blog .big-preview.multi-big {
margin-bottom: -20px;
}Regards,
Ismael
Hi,
Looks like Kriesi answered your post.
https://kriesi.at/support/topic/portfolio-previousnext-entry-in-same-category/#post-61281
Regards,
Ismael
Hi,
What type of header do you have?
Please give us a link to the website.
For starters, you can add this on your custom.css or Quick CSS
#header_main {
background: red;
}
#header_meta {
background: blue;
}Regards,
Ismael
Hi,
Increase wordpress php memory limit:
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Set it to 128M or higher.
Regards,
Ismael
Hi,
You can use the Contact Form 7 plugin then add this feature:
http://wordpress.org/plugins/contact-form-7-datepicker/
Regards,
Ismael
Hi,
Can you possibly disable the plugin completely? Remove browser cache then reload the page. See if the hover effect is working.
I don’t see the html code for overlay effect below the blog post image.
<span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 276px; width: 342px;"><span class="image-overlay-inside"></span></span>Regards,
Ismael
Hi,
2.) Edit Portfolio Grid > find Link Handling, select Open entry on a new page.
3.) Yes, it will probably overwrite the content. Just create a separate test installation then Import the dummy data.
Regards,
Ismael
Hi,
Open js > avia.js, find this code
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
logo = header.find('.logo img'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/2)
{
newH = el_height - st;
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Replace it with this:
//check if the browser supports element rotation
function avia_header_size()
{
var win = $(window),
header = $('.fixed_header #header'),
logo = header.find('.logo img'),
elements = $('#header_main .container, .main_menu ul:first-child > li > a:not(.avia_mega_div a)'),
el_height = $(elements).filter(':first').height(),
isMobile = 'ontouchstart' in document.documentElement,
scroll_top = $('#scroll-top-link'),
social = $('#header_meta'),
set_height = function()
{
var st = win.scrollTop(), newH = 0;
if(st < el_height/2)
{
newH = el_height - st;
social.show();
//header.removeClass('shadow');
}
else
{
newH = el_height/2;
social.hide();
//header.addClass('shadow');
}
elements.css({height: newH + 'px', lineHeight: newH + 'px'});
}
if(!header.length) return false;
if(isMobile)
{
return false;
}
win.scroll(set_height);
set_height();
}Regards,
Ismael
-
AuthorPosts
