Viewing 30 results - 103,681 through 103,710 (of 106,398 total)
  • Author
    Search Results
  • #134406

    Spoke to soon sorry.

    The CSS messes up the thumbnails in the ajax gallery. It does sort the loading problem out.

    Can the CSS not apply to the ajax gallery?

    #135551

    In reply to: Gallery image re-order

    I have also noticed that the project order on the full pages (not ajax) are not correct. The next and previous don’t show the correct projects. I am using the re-order plugin?

    #27839

    Topic: Gallery image re-order

    in forum Enfold
    artistic24459
    Participant

    I’m having a problem with the gallery element. Each time I go to edit a gallery the order changes without me doing anything. I have over 12 images in most galleries and not sure if this causes the problem. I am also using the large image with small thumbnails options.

    http://chriswardphotography.net/galleries/fashion-and-portraits/

    This is with all my galleries including ajax. Have you heard of anyone else having this problem?

    Its very hard to design the galleries as each time I wish to add an image the order will change. I like to place the images in a set order so my best are at the start. Its like I can only style the gallery once.

    http://www.chriswardphotography.com/test-area/examples/gallery-example3.jpg

    Above is an image showing you what is happening. This is for all galleries. The actions I do are as follows:

    1. Make a gallery with large review image and small thumbnails with the order I want.

    2. Insert the gallery.

    3. Update the page (save page).

    4. Edit the gallery again (the screen where you can add images or delete from the gallery like the image example link)

    This is when it will reorder the images without me doing anything. They will just show up in a different order.

    If you hit cancel its back to the original correct order. If you hit insert gallery it will save the changed order.

    I hope that makes sense :-)

    #134405

    Woo Hoo I think you have sorted it. I don’t get the problem now and it does not effect anything else in the website.

    Thanks so much its very important that the galleries work 100%

    #27834
    rhunecke
    Participant

    I’m using a Portfolio Slider to show my Clients ( http://roberthunecke.com/redesign/ ). I try to change the Background Color of it’s entries from #fcfcfc to any other color. Using Insepector Tools I found

    Code:
    content-slider .slide-image {
    }

    to be responsible.

    Using Quick CSS and

    Code:
    content-slider .slide-image {
    background: #ffff00;
    }

    doesn’t change anything, but works great as long as I’m using Inspector Preview. Why is that and how can I change the Background Color instead?

    Thanks,

    Robert

    PS: using images without alpha is not an option.

    #27828
    raptusag
    Participant

    Hello! Thank you for this nice theme! :-)

    Unfortunately we have a problem, with the blog styles. For the default blog we use the list with the small teaser images on the left side through a manually created page. In the detail from every blog entry we have the same image on the top on full width. But when one opens the blog components through the category, the list displayed does not show the small teaser image on the left, but the big image above the teaser text.

    is there a way to change this?

    thank you for your support.

    #27759
    artistic24459
    Participant

    Is there a way to hide title tags from gallery and thumbnails.

    Being a photographer I have a lot of images to show and thinking of titles that don’t sound like model in red dress, model in another red dress etc etc is hard :-)

    #27823
    Lene Larsen
    Participant

    Hi I read this: https://kriesi.at/support/topic/remove-feature-image-from-post-devins-code-not-working And did that. It is not working for me. Please help! :)

    Still the single post page shows the featured image. I only want the featured image to show for the thumbnails on blog page.

    #27819
    headbentdesign
    Participant

    I give up. I have literally spent an hour trying to figure this image cropping issue out. I have read through the forum, and found some helpful threads, but I have having absolutely NO luck. I’ve exhausted every option I can think of. Here is what I’m getting when i try to add a featured image to a full-width blog post :

    http://postimg.org/image/hzoxsuvvr/

    Thanks for your help guys. Man, I was really loving the theme and whipping together a nice look but I’m done for the night.

    Sincerely,

    Pat

    #27815
    thedeancorp
    Participant

    – I have set featured images for all my posts.

    – In the blog view, the correct image is displayed.

    – When the image is clicked and the picture is maximized, it shows a completely different image.

    – That same maximized image shows on all the posts for the same category.

    I have upgraded to WordPress 3.6, Enfold 1.9.1, resaved the posts and ccleaned my computer to clear the cache to no avail. Any ideas?

    #27813
    American Patriot
    Participant

    Is it possible, in the Product Slider only, to remove the inner_product_header and avia_cart_button sections and leave only a product image that links to its respective single product page? Is there something else I can use that does the same thing as I’m wanting? Ive linked to an image of what I’m trying to accomplish.

    http://goo.gl/QEnnRC

    #134425

    I tried that and I still cant get it to work. It will apply any changes I put in the layer’s style box (except the background color) but doesn’t seem to be taking any changes I put in either quick CSS or custom.css.

    Hi,

    Under Attachment details when selecting an image on the Media Library, you can click “Edit Image”.

    Regards,

    Ismael

    #134424

    Hi,

    For example, you added an ID on the attributes panel, something like “awesome”. You can use it like this on your custom.css or Quick CSS

    #awesome {
    background: black;
    }

    Regards,

    Ismael

    #135397

    Hi,

    I don’t see the difference between the two links. Icons are showing fine.

    Regards,

    Ismael

    #135203

    Hi,

    Unfortunately, border-radius property is not supported on IE8. Please add this on your custom.css to fix the stretched image.

    .avia-testimonial-image, .avia-testimonial-image img {
    max-width: 80px;
    width: 80px;
    }

    Regards,

    Ismael

    #135388

    Hi,

    Edit template-builder.php, find this code:

    echo " </div><!--end builder template-->";

    Below, add this code:

    $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
    $pages = array();
    foreach ($pagelist as $page) {
    $pages[] += $page->ID;
    }

    $current = array_search(get_the_ID(), $pages);
    $prevID = $pages[$current-1];
    $nextID = $pages[$current+1];
    ?>

    <?php if (!empty($prevID)) { ?>
    <a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
    </a>
    <?php }
    if (!empty($nextID)) { ?>
    <a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
    <?php } ?>

    Edit page.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'page' );
    ?>

    Add this:

    <?php $pagelist = get_pages('sort_column=menu_order&sort_order=asc');
    $pages = array();
    foreach ($pagelist as $page) {
    $pages[] += $page->ID;
    }

    $current = array_search(get_the_ID(), $pages);
    $prevID = $pages[$current-1];
    $nextID = $pages[$current+1];
    ?>

    <?php if (!empty($prevID)) { ?>
    <a class="avia-post-nav avia-post-prev without-image" href="<?php echo get_permalink($prevID); ?>" title="<?php echo get_the_title($prevID); ?>">Previous</a>
    </a>
    <?php }
    if (!empty($nextID)) { ?>
    <a class="avia-post-nav avia-post-next without-image" href="<?php echo get_permalink($nextID); ?>" title="<?php echo get_the_title($nextID); ?>">Next</a>
    <?php } ?>

    It doesn’t look exactly like the post nav but the it works.

    Regards,

    Ismael

    #134130

    I would suggest re-downloading theme files from your downloads on themeforest and then re-uploading and installing them via FTP one folder at a time.

    I just did a quick post on my personal site with 3.6 and 1.9.1 on Enfold to test things out and had no issues with images, text or even embedded code.

    #134404

    Hi,

    Please try this:

    #top div .avia-gallery img {
    max-height: 100%;
    }

    Regards,

    Ismael

    #135103

    Hey,

    Glad it worked. :)

    Cheers,

    Ismael

    #135127

    Hi,

    Instead of using the Image layer, you can use the div/video, paragraph, span layers. You can add the image using html tag.

    <img src="YOUR IMAGE URL HERE" />

    Regards,

    Ismael

    #135169

    Hey,

    Glad we could help. :)

    Cheers,

    Ismael

    bongoman
    Participant

    I’m wanting to insert an image as a layer into the layer slider but it seems I only have access to the full, original size image? I was hoping to access one of the many thumbnail sizes that Enfold & WordPress create…

    #135305

    Hi,

    You can place it on includes > loop-index.php, find this code:

    echo "<div class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."'>";

    Below, add the banner code:

    echo '<div class="posts_banner">YOUR BANNER HERE</div>';

    or if you are using an image, you do something like this:

    echo '<div class="posts_banner"><a href="URL HERE"><img src="IMAGE URL HERE"></a></div>';

    It will show on all blog posts.

    Regards,

    Ismael

    #134988

    Hey,

    Glad it worked.

    Cheers,

    Ismael

    #135300

    Hi,

    You can use this to hide the preview image:

    .ajax_slide .av_table_col.first.portfolio-preview-image {
    display: none;
    }

    Cheers,

    Ismael

    #135283

    Hi,

    Can you give us a link to your website? You can use Media Queries to remove the play button overlay when viewing on iPad or iPhone.

    @media only screen and (max-width: 767px) {
    .image-overlay.overlay-type-video {
    display: none !important;
    }
    }

    Add the code on your custom.css or Quick CSS

    Regards,

    Ismael

    #134423

    Sorry for another question on this. But once I create the attribute for the layer, how do I properly reference the attribute in the custom.css or quick CSS?

    I know what the actual CSS code should be, but Im just a little fuzzy on the syntax to reference the layer properly.

    Thanks for the help!

    #27806

    Topic: ie8 images in posts

    in forum Enfold
    edebe
    Participant

    This is a nice them for modern browsers, but does not work for ie8 as it should.

    Images in posts do not appear in ie8 when they have a link on them. No link then the image shows up.

    Also the featured image that appears on the left as thumbnail on the archive page is distorted in ie8.

    I find the theme very frustrating that is does not work in ie8. I had to add css so that colors would appear instead of transparent areas. the header background, buttons, icon boxes etc.

    theme Version: 1.9.1 and wp 3.6

    Please help fix ie8 issues. There are still too many users accessing websites using windows XP with ie8 for it to be ignored.

    Thank you

    #135189

    I created a file called “table.php” in the child theme folder. This is the content of the “table.php” file:

    <?php

    /**

    * Sidebar

    * Displays one of the registered Widget Areas of the theme

    */

    class avia_sc_table extends aviaShortcodeTemplate

    {

    static $table_count = 0;

    /**

    * Create the config array for the shortcode button

    */

    function shortcode_insert_button()

    {

    $this->config = __('Table', 'avia_framework' );

    $this->config = __('Content Elements', 'avia_framework' );

    $this->config = AviaBuilder::$path."sc-table.png";

    $this->config = 40;

    $this->config = 'avia-target-insert';

    $this->config = 'av_table';

    $this->config = array('modal_class' => 'bigscreen', 'before_save' => 'before_table_save');

    $this->config = array('av_row', 'av_cell','av_button');

    $this->config = __('Creates a data or pricing table', 'avia_framework' );

    }

    function extra_assets()

    {

    if(is_admin())

    {

    $ver = AviaBuilder::VERSION;

    wp_enqueue_script('avia_table_js' , AviaBuilder::$path.'js/avia-table.js' , array('avia_modal_js'), $ver, TRUE );

    //wp_enqueue_style( 'avia-table-style' , $this->$builder->assetsURL.'css/avia-table.css');

    }

    }

    /**

    * Popup Elements

    *

    * If this function is defined in a child class the element automatically gets an edit button, that, when pressed

    * opens a modal window that allows to edit the element properties

    *

    * @return void

    */

    function popup_elements()

    {

    $this->elements = array(

    array(

    "name" => __("Table Builder", 'avia_framework' ),

    "desc" => __("Start by adding columns and rows, then add content and styling to each.", 'avia_framework' ),

    "id" => "table",

    'container_class' =>"avia-element-fullwidth",

    "type" => "table",

    "row_style" => array( __('Default Row', 'avia_framework' ) => '',

    __('Heading Row', 'avia_framework' ) => 'avia-heading-row',

    __('Pricing Row', 'avia_framework' ) => 'avia-pricing-row',

    __('Button Row', 'avia_framework' ) => 'avia-button-row'

    ),

    "column_style" => array(__('Default Column', 'avia_framework' ) => '',

    __('Highlight Column', 'avia_framework' ) => 'avia-highlight-col',

    __('Description Column', 'avia_framework' ) => 'avia-desc-col',

    __('Center Text Column', 'avia_framework' ) => 'avia-center-col'

    )

    ),

    array(

    "name" => __("Table Purpose", 'avia_framework' ),

    "desc" => __("Choose if the table should be used to display tabular data or to display pricing options. (Difference: Pricing tables are flashier and try to stand out)", 'avia_framework' ),

    "id" => "purpose",

    "type" => "select",

    "std" => "pricing",

    "subtype" => array(

    __('Use the table as a Pricing Table', 'avia_framework' ) =>'pricing',

    __('Use the table to display tabular data', 'avia_framework' ) =>'tabular')),

    array(

    "name" => __("Table Caption", 'avia_framework' ),

    "desc" => __("Add a short caption to the table so visitors know what the data is about", 'avia_framework' ),

    "id" => "caption",

    "type" => "input",

    "std" => "",

    "required" => array("purpose","equals","tabular")

    )

    );

    }

    /**

    * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas

    * Most common usage is to define some markup in the $params which is then inserted into the drag and drop container

    * Less often used: $params to add data attributes, $params to modify the className

    *

    *

    * @param array $params this array holds the default values for $content and $args.

    * @return $params the return array usually holds an innerHtml key that holds item specific markup.

    */

    function editor_element($params)

    {

    $params = "config."' title='".$this->config."' />";

    $params.= "<div class='avia-element-label'>".$this->config."</div>";

    return $params;

    }

    /**

    * Editor Sub Element - this function defines the visual appearance of an element that is displayed within a modal window and on click opens its own modal window

    * Works in the same way as Editor Element

    * @param array $params this array holds the default values for $content and $args.

    * @return $params the return array usually holds an innerHtml key that holds item specific markup.

    */

    function editor_sub_element($params)

    {

    $template = $this->update_template("label", __("Element", 'avia_framework' ). ": {{label}}");

    $params = NULL;

    $params = "";

    $params .= "<div class='avia_image_container' {$template}>".__("Element", 'avia_framework' ).": ".$params."</div>";

    $params = array('modal_class'=>'mediumscreen');

    return $params;

    }

    /**

    * Frontend Shortcode Handler

    *

    * @param array $atts array of attributes

    * @param string $content text within enclosing form of shortcode element

    * @param string $shortcodename the shortcode found, when == callback name

    * @return string $output returns the modified html string

    */

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")

    {

    $atts = shortcode_atts(array('purpose' => 'pricing', 'caption' => ''), $atts);

    $depth = 2;

    $table_rows = ShortcodeHelper::shortcode2array($content, $depth);

    $output = "";

    if(empty($table_rows)) return;

    self::$table_count ++;

    switch($atts)

    {

    case "pricing": $output .= $this->pricing_table($table_rows, $atts, $meta); break;

    default: $output .= $this->data_table($table_rows, $atts, $meta); break;

    }

    return $output;

    }

    //resort the array so that its easier to do a liststlye output when using pricing tables

    function list_sort_array($table_rows)

    {

    $new = array();

    foreach($table_rows as $rk => $row)

    {

    foreach($row as $ck => $cell)

    {

    $new[$ck] = $cell;

    $new[$ck][] = $row;

    $new[$ck][] = $cell;

    }

    }

    return $new;

    }

    /*

    pricing table uses unordered lists to display the table structure

    */

    function pricing_table($table_rows, $atts, $meta)

    {

    $sorted_rows = $this->list_sort_array($table_rows);

    $output = "";

    $output .= "<div class='avia-table main_color avia-pricing-table-container avia-table-".self::$table_count." ".$meta."'>";

    $fallback_values = array();

    $empty_cells = false;

    foreach($sorted_rows as $ul_k => $ul)

    {

    $output .= "<div class='pricing-table-wrap'>";

    $output .= "<ul class='pricing-table ".$ul."'>";

    foreach($ul as $key => $li)

    {

    $content = trim(do_shortcode($li));

    if(empty($content))

    {

    $ul[$key] .= " empty-table-cell";

    $content = "{{content-{$key}}}";

    $empty_cells = true;

    }

    else if(empty($fallback_values[$key]))

    {

    $fallback_values[$key] = $content;

    }

    if(strpos($ul[$key],'avia-pricing-row') !== false)

    {

    $content = preg_replace('!($|€|¥|£|¢|¤|%|‰|¢|¤|£|¥|€)!','<span class="currency-symbol">$1</span>', $content);

    }

    if(strpos($ul[$key],'avia-pricing-row') !== false)

    {

    $content = preg_replace('!(one-time fee)!','<div class="onetimefee">$1</div>', $content);

    }

    $output .= "<li class='".$ul[$key]."'>";

    $output .= $key == 0 ? "<div class='first-table-item'>{$content}</div>" : $content;

    $output .= $key == 0 ? "<span class='pricing-extra'></span>" :"";

    $output .= "";

    }

    $output .= "";

    $output .= "</div>";

    }

    if($empty_cells)

    {

    foreach($fallback_values as $key => $value)

    {

    $output = str_replace("{{content-{$key}}}", "<span class='fallback-table-val'>".$value."</span>", $output);

    }

    }

    $output .= "</div>";

    return $output;

    }

    /*

    data table uses the real table html tag to display its structure

    */

    function data_table($table_rows, $atts, $meta)

    {

    $responsive_style = "";

    $output = "<table class='avia-table avia-data-table avia-table-".self::$table_count." ".$meta."'>";

    $output .= $atts ? "<caption>".$atts."</caption>" : "";

    $output .= "<tbody>";

    $counter = 0;

    foreach($table_rows as $rk => $row)

    {

    if(empty($row)) $row = array();

    $row_attributes = array_merge(array('row_style' => ""), $row);

    $output .= "<tr class='".$row_attributes."'>";

    foreach($row as $key => $cell)

    {

    if(empty($cell)) $cell = array();

    $cell_attributes = array_merge(array('col_style' => ""), $cell);

    $tag = $row_attributes == 'avia-heading-row' ? "th" : "td";

    $tag = $cell_attributes == 'avia-desc-col' ? "th" : $tag;

    if($rk == 0 && $tag == "th")

    {

    $responsive_style .= ".avia-table-".self::$table_count." td:nth-of-type({$counter}):before { content: '".$row[$counter]."'; } ";

    $counter ++;

    }

    $output .= "<{$tag} class='".$cell_attributes."'>";

    $output .= do_shortcode($cell);

    $output .= "</{$tag}>";

    }

    $output .= "</tr>";

    }

    $output .= "</tbody>";

    $output .= "</table>";

    $output .= "<style type='text/css'>{$responsive_style}</style>";

    return $output;

    }

    }

    And then, in the “functions.php” of my child theme I included the file “table.php”. This is the content of the “functions.php” file:

    <?php

    include("table.php");

    ?>

    But it still doesn’t work. Now when I go to the website it gives me an error…

Viewing 30 results - 103,681 through 103,710 (of 106,398 total)