Forum Replies Created

Viewing 30 posts - 66,031 through 66,060 (of 67,566 total)
  • Author
    Posts
  • in reply to: Text Box Not Editable #129960

    Hi,

    Please install WordPress 3.5 or higher. You should probably start from scratch.

    Regards,

    Ismael

    in reply to: Header's height and mega menu border #130315

    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

    in reply to: Custom marker for Google map #130176

    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

    in reply to: swap blog featured image and headline #130311

    Hi,

    What type of Blog Style do you have?

    Regards,

    Ismael

    in reply to: Alignment Issue in Mobile View #130192

    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

    in reply to: AJAX Search Results #130299

    Hi,

    I can’t seem to find the actual “Post & Pages” text on the search results. Can you give us a screenshot?

    Regards,

    Ismael

    in reply to: Adding images to table #130228

    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

    in reply to: how to set full width for the mobile view #130222

    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

    in reply to: Lining Up Table Lines & Content #130215

    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

    in reply to: Remove Space above/below slider #124966

    Hi,

    The space below the slider is cause by a horizontal rule element. You can decrease the padding or remove it.

    Regards,

    Ismael

    Hi,

    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

    in reply to: Enfold Main Menu Underline on Sub Pages #129619

    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

    in reply to: Sliders in Posts #130007

    Hi,

     

    You can the shortcodes. Edit a post, go to Visual Editor > Insert Shortcode wand. You can an EasySlider.

     

     

    Regards,

    Ismael

     

    in reply to: enlarged logo in internet explorer #129906

    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

    in reply to: remove Kriesi link from socket #130126

    Hi,

    This is the whole code for the copyright.

    //copyright
    $copyright = avia_get_option('copyright', "&copy; ".__('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

    in reply to: display pages in columns #130081

    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

    in reply to: Using Mega Menu #129948

    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

    in reply to: Center logo #130048

    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

    in reply to: Layerslider Error #129770

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    in reply to: Customizing info and functionality on blog posts #129053

    Hi,

    You can add something like this on your custom.css or Quick CSS

    .news-headline {
    font-size: 13px;
    }

    Regards,

    Ismael

    Hi,

    You can adjust the bottom position of the hover line.

    .avia-menu-fx {
    bottom: 20px;
    }

    Regards,

    Ismael

    Hi,

    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

    in reply to: [BUG] Custom Widget-Area and Plugins #130066

    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

    in reply to: Portfolio Catogories #130059

    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

    in reply to: www.website.com/homepage #128576

    Hi,

    You can get change the permalink manually.

    http://www.vivowebmatketing.com/ do not exist.

    Regards,

    Ismael

    in reply to: Ipad portrait view – overlapping logo and promo box #129072

    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

    in reply to: Enfold Translation FR #130045

    Hi,

    Translation are ongoing here: https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Regards,

    Ismael

    in reply to: sticky footer #129894

    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

    Hey,

    You just have to wait until the feature you requested gather sufficient votes.

    Regards,

    Ismael

    in reply to: Video shows link to video – no thumbnail #130147

    Hi,

    Use the Video element under Media Elements tab, insert the video url.

    You can also use the Image element, Set Link to Manually then insert the video url. This will open the video on a lightbox.

    Regards,

    Ismael

Viewing 30 posts - 66,031 through 66,060 (of 67,566 total)