Forum Replies Created

Viewing 30 posts - 65,041 through 65,070 (of 66,712 total)
  • Author
    Posts
  • in reply to: Page with a post runs up #131498

    Hi,

    1.) What do you mean by it runs up? Can you please explain further?

    2.) Please increase php memory limit. Edit wp-config.php, add this code:

    define('WP_MEMORY_LIMIT', '128M');

    Regards,

    Ismael

    in reply to: Button for footer or side bar? #131325

    Hi,

    Google Chrome doesn’t support rss, you need to add plugins to read feeds.

    https://chrome.google.com/webstore/detail/rss-feed-reader/pnjaodmkngahhkoihejjehlcdlnohgmp?hl=en

    Checking your rss feed on Firefox works for me. http://saccdetroit.org/?feed=rss2

    Regards,

    Ismael

    in reply to: Textblock with HTML Links – Serious Problem #131388

    Hi,

    Maybe you should try this:

    <div class="abc"><a href="http://kriesi.at.com"><span>some content</span></a></div>

    <div class="abc"><a href="http://www.themeforest.com"><span>some content</span></a></div>

    Instead of enclosing the whole div with the anchor tag, just include the span.

    Regards,

    Ismael

    Hi,

    1.) You can add this on your custom.css to remove the strobe effect.

    .avia-progress-bar div.progress .bar {
    background-image: none;
    }

    2.) It depends on the content you have. Please give us a link to the website. You can control the font size of the content with this:

    .iconbox_content p {
    font-size: 11px;
    }

    And the iconbox title using this:

    h3.iconbox_content_title {
    font-size: 11;
    }

    3.) You can refer to this link: https://kriesi.at/support/topic/custom-hosted-font-with-the-child-theme-instructions

    Regards,

    Ismael

    in reply to: Problem with blog posts #131359

    Hi,

    Your website is not loading. You can use the <!– more –> tag to specify excerpts or on Screen Options > enable the Excerpt option. You can then manually add excerpt for post and pages.

    Regards,

    Ismael

    Hi,

    Can you increase it to 128M or higher? Do you have the latest version of Enfold?

    Please switch the Avia Builder to debug mode. This way you’ll be able to see the actual shortcode below the Advance Layout Editor.

    Edit functions.php, find this code

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add the code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    Regards,

    Ismael

    in reply to: Photo buttons don't appear for first time visitors #131074

    Hi,

    There maybe a lot of factors why the image is not showing on your end. I viewed the website using Google Chrome on a Windows 7 machine. I removed my browser cache then visited your site again, the button loads fine.

    Are you on a MAC? Let me tag the rest of the support team to check the website.

    Regards,

    Ismael

    in reply to: Testimonial pictures #131354

    Hi,

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

    .avia-testimonial-image img, .avia-testimonial-image {
    border-radius: 0;
    }

    Regards,

    Ismael

    in reply to: Move footer & socket #131390

    Hi,

    You can’t move the #footer upwards but you can adjust the top position of the container, using this:

    .responsive .container .twelve.units {
    top: -20px;
    }

    Add this to change the background color of the dropdown menu:

    #top .header_color select {
    border-color: gray;
    background-color: black;
    color: #7D7D7D;
    }

    Regards,

    Ismael

    in reply to: Sidebar parent links #131385

    Hi,

    What do you mean by parent page links? Can you give us a screenshot?

    Regards,

    Ismael

    in reply to: Change Enfold slider text backgroung #131382

    Hi,

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

    .avia-caption .avia-caption-content p {
    background: red;
    }

    You can also use rgba values to render transparent background

    .avia-caption .avia-caption-content p {
    background: rgba(255,0,0,0.5);
    }

    Change the font family using this:

    .avia-caption .avia-caption-content p {
    font-family: Courier;
    }

    You can use this plugin too: http://wordpress.org/plugins/wp-google-fonts/

    Regards,

    Ismael

    in reply to: Text Block – text layout #131376

    Hi,

    It works fine on my end. I inserted a Text Block element then added a text aligning it center. The code looks like this on the HTML or Text mode:

    <p style="text-align: center;">Click here to add your own text</p>

    Regards,

    Ismael

    in reply to: menu seems a bit kanckered #131374

    Hi,

    You need to specify the Main Menu on Appearance > Menu > Theme Location.

    @dexeptive: Thanks for the tip. :)

    Cheers,

    Ismael

    Hi,

    Did you transfer the wp-content/uploads folder to the new installation?

    Regards,

    Ismael

    in reply to: Problems with iPad. #131328

    Hi,

    Please upgrade to Enfold 1.8.2.

    You can decrease the padding and the font size when viewing on iPad portrait mode. Add this on your custom.css or Quick CSS

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .responsive .main_menu ul:first-child > li > a {
    padding: 0 7px;
    font-size: 11px;
    }
    }

    Regards,

    Ismael

    in reply to: Setting Navigation Text Color, Setting Font Size #131356

    Hi,

    You can use this codes on your custom.css or Quick CSS:

    – Change navigation menu (only below logo) background color

    .header_color .main_menu ul {
    background: red;
    }

    – Change navigation menu font size

    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    font-size: 15px;
    }

    Change navigation menu padding

    .main_menu ul:first-child > li > a {
    padding: 0 20px;
    }

    Change the values.

    Regards,

    Ismael

    in reply to: Several questions re: Enfold and links (WP newbie) #131342

    Hi,

    1.) You can edit the menus on Appearance > Menus panel.

    2.) You can enclose the iconbox shortcode inside an anchort tag then place it inside a textblock shortcode, something like this

    [av_textblock]
    <a href="http://kriesi.at">[av_icon_box icon='1' position='left' title='IconBox Title' link='' linktarget='no']This is an iconbox[/av_icon_box]</a>
    [/av_textblock]

    3.) You can manually edit 404.php to change the layout of the 404 page template.

    Regards,

    Ismael

    in reply to: Adding images to table #130232

    Hi,

    You can add a request here: https://kriesi.at/support/topic/enfold-feature-requests

    Regards,

    Ismael

    in reply to: Photo buttons don't appear for first time visitors #131072

    Hi,

    Are you talking about the Big Green Tokyo Image? It loads fine on my end. Maybe, a slow internet connection?

    Regards,

    Ismael

    in reply to: Flat Button Rollover #131280

    Hi,

    Edit functions.php, add this code:

    add_theme_support('avia_template_builder_custom_css');

    This will allow you to add unique css selector for each avia elements.

    Go to the Advance Layout Editor, insert a button then add a unique css selector “orange-button” for example.

    Edit custom.css or Quick CSS, add this code:

    .orange-button a {
    background-image: none !important;
    background-color: #cc3300 !important;
    border-color: #cc3300 !important;
    color: white !important;
    }

    .orange-button a:hover {
    background-image: none !important;
    background-color: white !important;
    border-color: white !important;
    color: #242424 !important;
    }

    Regards,

    Ismael

    in reply to: no header and no blank space on landing page #131266

    Hey,

    Glad you figured it out. :)

    To learn more about the theme, you can watch videos here: https://vimeo.com/channels/aviathemes

    Cheers,

    Ismael

    in reply to: Hide Bullet in Widget Title #131035

    Hey,

    Glad you figured it out. :)

    Cheers,

    Ismael

    in reply to: stop videos from overlapping header #131150

    Hi,

    Can you give us a link to the website? What is the previous thread url?

    Regards,

    Ismael

    in reply to: Easy slider not working properly #131142

    Hi,

    Edit config-templatebuilder > aviashortcodes > slideshow.php, find this code on line 503:

    $html .= 	"<a href='#prev' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#next' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Replace it with:

    $html .= 	"<a href='#' class='prev-slide' >".__('Previous','avia_framework' )."</a>";
    $html .= "<a href='#' class='next-slide' >".__('Next','avia_framework' )."</a>";

    Regards,

    Ismael

    in reply to: Adding images to table #130230

    Hi,

    First, switch the Advance Layout Editor to debug mode.

    Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add the code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You’ll be able to see the actual shortcode below the Advance Layout Editor. Paste the code above on the shortcode field.

    Regards,

    Ismael

    in reply to: Featured Image works on every page except my "Frontpage" #130571

    Hi,

    I updated the page and the main post slider started showing the images again. I configure the Offset Number to 1, I think the issue is about the post slider pulling posts from the same categories. I’m not sure about this but it seems that the problem is solve.

    Check the page: http://up-shift.net/upshifttest/

    Regards,

    Ismael

    in reply to: left Side bar excess free space #126666

    Hi,

    You can try 1024. The Layers Container option will constrain all elements inside a specific width and the slider will create a centered inner area to place your content into that.

    Regards,

    Ismael

    in reply to: Slider only slides twice #129868

    Hi,

    Can you please recreate the Easy Slider from scratch? I can easily add 3 or more images on the Easy Slider on my end without it stopping or causing issues.

    Please increase the wordpress php memory limit:

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    in reply to: Custom Google Font #131097

    Hi,

    Open includes > admin >register-portfolio-options.php, find this code:

    Tangerine'=>'Tangerine',
    'Terminal Dosis'=>'Terminal Dosis',
    'Tenor Sans'=>'Tenor Sans',

    'Varela Round'=>'Varela Round',

    'Yellowtail'=>'Yellowtail',

    Add this code below:

    'Maven Pro'=>'Maven Pro',

    You can now use the font on your custom.css or Quick CSS

    /*default*/
    h1, h2, h3, h4, h5, h6 {
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600; }

    Regards,

    Ismael

    in reply to: Image Sizes for Portfolio Previews #130797

    Hi,

    You can see all image thumbnail size on functions.php

    /*
    * Register additional image thumbnail sizes
    * Those thumbnails are generated on image upload!
    *
    * If the size of an array was changed after an image was uploaded you either need to re-upload the image
    * or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
    */

    $avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
    $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
    }

    The one use for the portfolio featured image is this:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    Regards,

    Ismael

Viewing 30 posts - 65,041 through 65,070 (of 66,712 total)