Forum Replies Created
-
AuthorPosts
-
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
Hi,
Please remove browser cache then hard refresh the page. Maybe a cache issue.
Regards,
Ismael
Hi,
What do you mean for the whole slider?
The purpose of the code is to move the position of the caption inside the Easy Slider.
Regards,
Ismael
June 21, 2013 at 4:22 am in reply to: How to remove a link to the original image from a featured image? #125719Hi,
What type of Blog style do you have? You can find the settings on Enfold > General Settings > Blog Style.
You can add this on your custom.css Or Quick CSS
.big-preview.single-big a, .small-preview {
pointer-events: none;
cursor: default;
}Regards,
Ismael
Hi,
Please use get_sidebar not dynamic sidebar. We are calling the file sidebar-archive.php not the registered widget area called archive-sidebar.
Please read the instructions carefully.
This works properly on my end. It eliminates all of the query to other sidebars and create a unique one for use in the archive page only.
Regards,
Ismael
Hi,
Read about the requirements on using pretty permalinks here. http://codex.wordpress.org/Using_Permalinks
Regards,
Ismael
Hi,
You can create a Custom Widget on Appearance > Widget then use the Text Widget. Insert the HTML codes there. Apply the custom widget on all pages.
Regards,
Ismael
Hi,
You can’t switch to the Standard editor when you are using the Advance Layout Editor, you will the content. When editing a post, go to Visual Editor then look for the Magic Wand or Insert Shortcode button.
Regards,
Ismael
Hi,
Go to config-templatebuilderavia-shortcodes team.php, find this code
if($name)
{
$output.= "<h3 class='team-member-name' property='v:name'>{$name}</h3>";
}Replace it with:
if($name)
{
$output.= "<h4 class='team-member-name' property='v:name'>{$name}</h4>";
}Regards,
Ismael
Hi,
Please follow this link, look for Nick’s instruction.
https://kriesi.at/support/topic/youtube-icon
The process is a bit complicated right now.
Kriesi said he will make it possible to add your own icons on future updates.
Regards,
Ismael
Hi,
You need the target property.
<a href="http://www.urlhere.com" target="_blank">Click here</a>
Regards,
Ismael
Hi,
Yes, I think it is the table press. It is not responsive. You might need to use Media Queries on custom.css.
Why do you need the plugin? You can achieve the same layout with the Table element.
Regards,
Ismael
Hi,
It is a bit complicated. You should probably use the Full Width Slider.
You can try this
@media only screen and (max-width: 767px) {
.ls-wp-fullwidth-container {
height: 300px !important;
}
.ls-wp-container {
height: 300px !important;
width: 100% !important;
}
.ls-inner {
width: 100% !important;
height: 300px !important;
}
.ls-layer.ls-active > .ls-bg {
height: 300px !important;
margin-top: -150px !important;
}
}Regards,
Ismael
Hi,
Check if you have the proper file permission on cpanel.
http://www.siteground.com/tutorials/cpanel/file_permissions.htm
Edit framework > php > class-breadcrumb.php, find this code
'show_home' => __( 'Home', $textdomain ),
Regards,
Ismael
Hi,
Please override the theme files via FTP. Maybe you accidentally remove something.
Try to revert back to default permalink settings. You should read about permalink settings on http://codex.wordpress.org/Using_Permalinks, look for .htaccess.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
.goog-te-gadget-simple {
background: none;
}Regards,
Ismael
Hi,
You can override the theme files via FTP. You will not lose the content. For security purposes, create a backup of your old theme files and your database. Take note of the files you modified.
Enfold 1.7 has been released. Please download it on your themeforest account.
Regards,
Ismael
Hi,
1.) Edit loop-index.php, find this code
comments_popup_link( "0 ".__('Comments','avia_framework'),
"1 ".__('Comment' ,'avia_framework'),
"% ".__('Comments','avia_framework'),'comments-link',
"".__('Comments Disabled','avia_framework'));
echo "</span>";
echo "<span class='text-sep'>/</span>";Replace it with:
//comments_popup_link( "0 ".__('Comments','avia_framework'),
//"1 ".__('Comment' ,'avia_framework'),
//"% ".__('Comments','avia_framework'),'comments-link',
//"".__('Comments Disabled','avia_framework'));
echo "</span>";
//echo "<span class='text-sep'>/</span>";Find this code:
echo $cats;
echo '</span><span class="text-sep">/</span>';Replace it with:
//echo $cats;
//echo '</span><span class="text-sep">/</span>';2.) Which slider ? Full width Easy Slider ? or Advance Layer Slider?
Regards,
Ismael
-
AuthorPosts