Forum Replies Created
-
AuthorPosts
-
Hi,
Please install WordPress 3.5 or higher. You should probably start from scratch.
Regards,
Ismael
Hi,
I think it is a cached version of the site. Please remove browser cache or flush the cache settings of the current caching plugin. This is what I see on my end.

Regards,
Ismael
Hi,
Please watch this video on how to properly upload the update via FTP. :)
Please create a backup of theme files and database.
Regards,
Ismael
Hi,
Please add this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
.responsive #header .sub_menu {
padding-top: 10px;
background: white;
}
.social_header .phone-info {
height: 20px;
}
}Regards,
Ismael
Hi,
I can’t seem to find the actual “Post & Pages” text on the search results. Can you give us a screenshot?
Regards,
Ismael
Hi,
Yes, it is possible.
[av_table purpose='pricing' caption='']
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[av_row row_style=''][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][av_cell col_style='']<img src="IMAGE URL HERE">[/av_cell][/av_row]
[/av_table]Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS
@media only screen and (max-width: 767px) {
.responsive .boxed#top {
width: 100%;
}
}Regards,
Ismael
Hi,
You can specify a uniform height for each list. Add this on your custom.css or Quick CSS
.main_color .pricing-table>li:nth-child(odd) {
height: 60px;
}
.main_color .pricing-table>li:nth-child(even) {
height: 60px;
}Regards,
Ismael
Hi,
The space below the slider is cause by a horizontal rule element. You can decrease the padding or remove it.
Regards,
Ismael
July 18, 2013 at 5:44 am in reply to: link & quote post icons do not show in "single author" blog page #129523Hi,
Sorry for that.
Edit includes > loop-index.php, find this code
if(strpos($blog_style, 'multi') !== false)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== false)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Below, add this code
if(strpos($blog_style, 'multi') !== true)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== true)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Regards,
Ismael
Hi,
Make this page http://69.195.124.95/~threeced/curriculum-programs-early-childhood/ the parent page of
Early Childhood
Parent & Tot
Preschool
Kindergarten
Curriculum Overview Chart
Edit each page, look for Page Attributes > select this http://69.195.124.95/~threeced/curriculum-programs-early-childhood/ as their parent.
See if it works.
Regards,
Ismael
Hi,
You can the shortcodes. Edit a post, go to Visual Editor > Insert Shortcode wand. You can an EasySlider.
Regards,
Ismael
Hi,
You can set a min-height for the box-content allowing the buttons to align properly.
/*
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 (min-width: 820px) and (max-width: 989px) {
/* Add your Mobile Styles here */
.home .av_one_third .iconbox_content {
min-height: 220px;
}
}Regards,
Ismael
Hi,
This is the whole code for the copyright.
//copyright
$copyright = avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>");
// you can filter and remove the backlink with an add_filter function
// from your themes (or child themes) functions.php file if you dont want to edit this file
// you can also just keep that link. I really do appreciate it ;)
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");You can change the values there then this code echo it out:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>Regards,
Ismael
Hi,
You can’t insert a page but you can easily copy that. Insert an Image element then below add the text block element. Add an anchor tag linking to a page.
Maybe you can add something like this on the text block:
<h3>Randi’s Bio</h3>
<p>SOME TEXT HERE</p>
<a href="LINK TO A PAGE">Read More...</a>Regards,
Ismael
Hi,
Remove the !important part to avoid affecting the mega menu.
#header_main .container, .main_menu ul:first-child > li > a {
height: 90px;
line-height: 90px;
}Regards,
Ismael
Hi,
You can move the left position of the logo.
div .logo {
float: left;
position: absolute;
left: 40%;
}Adjust the left value.
You can adjust the height of the logo on mobile view, this will also adjust the width automatically.
@media only screen and (max-width: 767px) {
.responsive .logo {
height: 200px;
}
}Regards,
Ismael
Hi,
You can add something like this on your custom.css or Quick CSS
.news-headline {
font-size: 13px;
}Regards,
Ismael
July 18, 2013 at 4:34 am in reply to: How to reduce the height of the main header (with the logo)? #127942Hi,
You can adjust the bottom position of the hover line.
.avia-menu-fx {
bottom: 20px;
}Regards,
Ismael
July 18, 2013 at 4:27 am in reply to: Remove Feature Image From Post (Devin's) Code Not working #130071Hi,
Do you want to remove the Featured Image? The thread you provided is for “Abundance”. Please use this instead
.big-preview.multi-big, .small-preview {
display: none;
}Regards,
Ismael
Hi,
I tested this on my end. I created a custom widget area with the woocommerce plugin turned on then save it. I go to Plugins then deactivated the woocommerce plugin, checked the custom widget area and the widgets are still intact. I activated the woocommerce again, the widgets are still there.
Regards,
Ismael
Hi,
Open config-templatebuilder > avia-shortcodes > portfolio.php, find this code
$output .= "<a href='#' data-filter='all_sort' class='all_sort_button active_sort'>".__('All','avia_framework' )."</a>";Another is located on framework > php > class-breadcrumbs.php, find this code
echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';Regards,
Ismael
Hi,
You can get change the permalink manually.
http://www.vivowebmatketing.com/ do not exist.
Regards,
Ismael
Hi,
I’ll tag Kriesi. I think the issue occurs when you suddenly rotate the iPad on portrait view without refreshing the page.
Regards,
Ismael
Hi,
Translation are ongoing here: https://kriesi.at/support/topic/please-contribute-and-translate-enfold
Regards,
Ismael
Hi,
Home, you mean the home menu? You can change the home menu background with CSS.
#menu-item-755 {
background: url('IMAGE OR ICON LINK HERE');
width: 200px; /* Adjust this value */
text-indent: -9999px; /* This is for hiding the "Home" text */
}Inspect your home menu, look for the li id selector, mine is #menu-item-755.
Regards,
Ismael
July 18, 2013 at 3:40 am in reply to: Single Author / Mult Author Image and Excerpt Alignment #128814Hey,
You just have to wait until the feature you requested gather sufficient votes.
Regards,
Ismael
-
AuthorPosts
