Forum Replies Created

Viewing 30 posts - 91 through 120 (of 143 total)
  • Author
    Posts
  • in reply to: Bug: Image scaling doesn t work with gallery + simple slider #552036

    hej!
    it partially worked, thank you! only the images are still changing on hover on the thumbs…
    greets
    Lucie

    in reply to: Bug: Image scaling doesn t work with gallery + simple slider #550896

    good morning!
    anyone found a solution?
    regards
    lucie

    in reply to: Bug: Image scaling doesn t work with gallery + simple slider #548620

    Hi Andy!
    as posted I would like to have the thumbs in 120px square and no change/preview of the big picture @ hover on the thumbs if possible (but still opening lightbox on klick, if possible). it looks like this at the moment:
    gallery
    and at hover on the 2nd thumb like this:
    gallery2
    this is what i like to get:
    gallery3

    regards
    lucie

    is it possible to deactivate the hover?

    Hi Yigit!

    I put it in a smaller column, this worked for the big picture.
    the code did unfortunately nothing. the thumbnails are still not scaled right. at hover on the thumbnails, the pics are shown scaled wrong in the place of the big picture. since i also want to get rid of the border and have a margin between big pic and thumbs i tried this:
    `#top div .avia-gallery .avia-gallery-big .avia_start_animation{
    height: auto!important;
    margin-bottom: 20px !important;
    border-style: none!important;
    }

    #top div .avia-gallery .avia-gallery-thumb{
    height: auto!important;
    border-style: none!important;
    }`
    but this also does nothing…
    i hope i wrote it understandable in a way… :)

    regards
    Lucie

    • This reply was modified 8 years, 11 months ago by aB-Agenta.
    in reply to: Update Problem: Pictures on mobile view shown #545052

    dear ismael!
    i moved to an own thread for the pic problem, that i created earlier to keep it apart from the mobile problem i had…
    https://kriesi.at/support/topic/bug-image-scaling-doesn-t-work-with-gallery-simple-slider
    greets
    Lucie

    in reply to: Bug: Image scaling doesn t work with gallery + simple slider #545049

    Hi Dake!
    theme is updated. (i don t know why, but i always have to do it manually. do you have a hint?). Problem is still existing. Like Ismael suggested in another thread, i created a test page for you.. (Sorry Ismael, I moved to here so the topic fits, i promise to differ more with the problems/threads to keep the forum clean )

    this is what i would like to get:
    http://kriesi.at/themes/enfold/2013/10/21/postformat-gallery-multiple-images-with-different-sizes/

    thx!

    • This reply was modified 8 years, 11 months ago by aB-Agenta.
    in reply to: Update Problem: Pictures on mobile view shown #543083

    Hi Ismael!
    it is right there: screenshot
    the pictures are supposed to be scaled…
    another thing on this site: the special headings have no padding-bottom. i used this custom css code:`.av-special-heading {
    padding-bottom: 20px !important; }`
    but unfortunately it is not working…
    best regards
    lucie

    in reply to: Optional (User decides) switch off mobile version for ipad #540712

    thank you!

    in reply to: Update Problem: Pictures on mobile view shown #540711

    Hi Ismael!

    thx, the code for the sticky header worked.
    In the massonary there are 6 pictures; i wanted to display them as shop thumbnails. it is not working. no matter what kind of view i put in, it always scales them in the same wrong way.

    the other problem (screenshot) is solved.

    could you take another peek? login is still active for you

    • This reply was modified 9 years ago by aB-Agenta.
    in reply to: Problem with icon box hover #540694

    Hi Andy!
    no, i decided to just remove the link completely…
    thx!

    in reply to: Optional (User decides) switch off mobile version for ipad #530810

    the color worked, but it doesn t make me a list anymore. “Diverse Auswertungsfunktionen, z. B. eine Buchungsstatistik über die gebuchten Vermittler-Provisionen” : the part “Vermittler-Provision” is not aligned proper…
    and the bullets are at the bottom and not in the middle..

    in reply to: Optional (User decides) switch off mobile version for ipad #530802

    thx

    in reply to: Optional (User decides) switch off mobile version for ipad #530790

    Hej Yigit,

    ok, will do!
    Another question: how can i change the color of bullet points?

    thx!

    in reply to: Problem with icon box hover #530753

    Hi Yigit! Did you find anything?
    greetz,
    Lucie

    in reply to: Problem with icon box hover #530149

    thx!

    in reply to: Problem with icon box hover #530132

    oh, i probably didn t describe my problem very good: i want to REMOVE the hover box with the text

    in reply to: Problem with icon box hover #530130

    i changed it back to my code…could you take another look?

    in reply to: Problem with icon box hover #530126

    Hi Yigit!
    nope, did not work. now the font is green and the hover box at the title is still there…

    cheers back,
    Lucie

    • This reply was modified 9 years ago by aB-Agenta.

    I got it! there were some lines missing…here the correct code for 4 images, is others want to use it:

    /**
     * AVIA ADVERTISING WIDGET - 4 Pictures
     *
     * Widget that retrieves, stores and displays the number of twitter and rss followers
     *
     * @package AviaFramework
     * @todo replace the widget system with a dynamic one, based on config files for easier widget creation
     */
     
     
    //multiple images
    if (!class_exists('avia_partner_widget'))
    {
            class avia_partner_widget extends WP_Widget {
     
                    function avia_partner_widget() {
     
                            $this->add_cont = 4;
                            //Constructor
                            $widget_ops = array('classname' => 'avia_partner_widget', 'description' => 'An advertising widget that displays 4 images with 125 x 125 px in size' );
                            $this->WP_Widget( 'avia_partner_widget', THEMENAME.' Advertising Area', $widget_ops );
                    }
     
                    function widget($args, $instance)
                    {
                            extract($args, EXTR_SKIP);
                            echo $before_widget;
     
                            global $kriesiaddwidget, $firsttitle;
                            $kriesiaddwidget ++;
     
                            $title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
                            $image_url = empty($instance['image_url']) ? '<span class="avia_parnter_empty"><span>'.__('Advertise here','avia_framework').'</span></span>' : '<img class="rounded" src="'.$instance['image_url'].'" title="" alt=""/>';
                            $ref_url = empty($instance['ref_url']) ? '#' : apply_filters('widget_comments_title', $instance['ref_url']);
                            $image_url2 = empty($instance['image_url2']) ? '<span class="avia_parnter_empty"><span>'.__('Advertise here','avia_framework').'</span></span>' : '<img class="rounded" src="'.$instance['image_url2'].'" title="" alt=""/>';
                            $ref_url2 = empty($instance['ref_url2']) ? '#' : apply_filters('widget_comments_title', $instance['ref_url2']);
                            $image_url3 = empty($instance['image_url3']) ? '<span class="avia_parnter_empty"><span>'.__('Advertise here','avia_framework').'</span></span>' : '<img class="rounded" src="'.$instance['image_url3'].'" title="" alt=""/>';
                            $ref_url3 = empty($instance['ref_url3']) ? '#' : apply_filters('widget_comments_title', $instance['ref_url3']);
                            $image_url4 = empty($instance['image_url4']) ? '<span class="avia_parnter_empty"><span>'.__('Advertise here','avia_framework').'</span></span>' : '<img class="rounded" src="'.$instance['image_url4'].'" title="" alt=""/>';
                            $ref_url4 = empty($instance['ref_url4']) ? '#' : apply_filters('widget_comments_title', $instance['ref_url4']);
     
                            if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
                            echo '<a target="_blank" href="'.$ref_url.'" class="preloading_background  avia_partner1 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url.'</a>';
                            if($this->add_cont == 4) echo '<a target="_blank" href="'.$ref_url2.'" class="preloading_background avia_partner2 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url2.'</a>';
                 echo '<a target="_blank" href="'.$ref_url3.'" class="preloading_background avia_partner2 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url3.'</a>';
                            echo '<a target="_blank" href="'.$ref_url4.'" class="preloading_background avia_partner2 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url4.'</a>';
    						echo $after_widget;
     
                            if($title == '')
                            {
                                    $firsttitle = 'no_top_margin';
                            }
     
                    }
     
     
                    function update($new_instance, $old_instance) {
                            //save the widget
                            $instance = $old_instance;
                            foreach($new_instance as $key=>$value)
                            {
                                    $instance[$key] = strip_tags($new_instance[$key]);
                            }
                            return $instance;
                    }
     
     
     
                    function form($instance)
                    {
                            $instance = wp_parse_args( (array) $instance, array( 'title' => '', 'image_url' => '', 'ref_url' => '', 'image_url2' => '', 'ref_url2' => '', 'image_url3' => '', 'ref_url3' => ''  ) );
                            $title = strip_tags($instance['title']);
                            $image_url = strip_tags($instance['image_url']);
                            $ref_url = strip_tags($instance['ref_url']);
                            $image_url2 = strip_tags($instance['image_url2']);
                            $ref_url2 = strip_tags($instance['ref_url2']);
                            $image_url3 = strip_tags($instance['image_url3']);
                            $ref_url3 = strip_tags($instance['ref_url3']);
    						 $image_url4 = strip_tags($instance['image_url4']);
                            $ref_url4 = strip_tags($instance['ref_url4']);
            ?>
                            <p><label for="<?php echo $this->get_field_id('title'); ?>">Title:
                            <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>" /></label></p>
     
                            <p><label for="<?php echo $this->get_field_id('image_url'); ?>">Image URL: <?php if($this->add_cont == 2) echo "(125px * 125px):"; ?>
                            <input class="widefat" id="<?php echo $this->get_field_id('image_url'); ?>" name="<?php echo $this->get_field_name('image_url'); ?>" type="text" value="<?php echo esc_attr($image_url); ?>" /></label></p>
     
                            <p><label for="<?php echo $this->get_field_id('ref_url'); ?>">Referal URL:
                            <input class="widefat" id="<?php echo $this->get_field_id('ref_url'); ?>" name="<?php echo $this->get_field_name('ref_url'); ?>" type="text" value="<?php echo esc_attr($ref_url); ?>" /></label></p>
     
                            <?php if($this->add_cont == 4)
                            { ?>
     
                                            <p><label for="<?php echo $this->get_field_id('image_url2'); ?>">Image URL 2: (125px * 125px):
                            <input class="widefat" id="<?php echo $this->get_field_id('image_url2'); ?>" name="<?php echo $this->get_field_name('image_url2'); ?>" type="text" value="<?php echo esc_attr($image_url2); ?>" /></label></p>
     
                            <p><label for="<?php echo $this->get_field_id('ref_url2'); ?>">Referal URL 2:
                            <input class="widefat" id="<?php echo $this->get_field_id('ref_url2'); ?>" name="<?php echo $this->get_field_name('ref_url2'); ?>" type="text" value="<?php echo esc_attr($ref_url2); ?>" /></label></p>
               
    						<p><label for="<?php echo $this->get_field_id('image_url3'); ?>">Image URL 3: (125px * 125px):
                            <input class="widefat" id="<?php echo $this->get_field_id('image_url3'); ?>" name="<?php echo $this->get_field_name('image_url3'); ?>" type="text" value="<?php echo esc_attr($image_url3); ?>" /></label></p>
     
                            <p><label for="<?php echo $this->get_field_id('ref_url3'); ?>">Referal URL 3:
                            <input class="widefat" id="<?php echo $this->get_field_id('ref_url3'); ?>" name="<?php echo $this->get_field_name('ref_url3'); ?>" type="text" value="<?php echo esc_attr($ref_url3); ?>" /></label></p>
    						
    						<p><label for="<?php echo $this->get_field_id('image_url4'); ?>">Image URL 4: (125px * 125px):
                            <input class="widefat" id="<?php echo $this->get_field_id('image_url4'); ?>" name="<?php echo $this->get_field_name('image_url4'); ?>" type="text" value="<?php echo esc_attr($image_url4); ?>" /></label></p>
     
                            <p><label for="<?php echo $this->get_field_id('ref_url4'); ?>">Referal URL 4:
                            <input class="widefat" id="<?php echo $this->get_field_id('ref_url4'); ?>" name="<?php echo $this->get_field_name('ref_url4'); ?>" type="text" value="<?php echo esc_attr($ref_url4); ?>" /></label></p>
     
                            <?php }?>
     
            <?php
                    }
            }
    }
     
     
     
    if (!class_exists('avia_one_partner_widget'))
    {
            //one image
            class avia_one_partner_widget extends avia_partner_widget
            {
                    function avia_one_partner_widget()
                    {
     
                            $this->add_cont = 1;
     
                            $widget_ops = array('classname' => 'avia_one_partner_widget', 'description' => 'An advertising widget that displays 1 big image' );
     
                            $this->WP_Widget( 'avia_one_partner_widget', THEMENAME.' Big Advertising Area', $widget_ops );
                    }
            }
    }
    

    Good Morning!
    nope again, now its displaying just three urls again…

    • This reply was modified 9 years ago by aB-Agenta.

    nope, still just 3…

    dear ismael,

    it is probably because it is friday: i am not able to change the code so it displays 4 pictures. could u help me out?

    in reply to: Urgent! Responsives Webdesign #512194

    hej rikard,
    it was probably a dau-problem. i tried again and this time no problem at all. sorry!

    in reply to: Urgent! Responsives Webdesign #511677

    that is, what i thought too; but by doing this, it totally screwed up my layout/css

    in reply to: Urgent! Responsives Webdesign #511616

    With the code above; won t it be overwritten by any theme updates???

    in reply to: Custom CSS Help #506914

    never mind, problem is fixed, it probably was an update problem!

    in reply to: Custom CSS Help #506847

    do i need to switch certains things to “enfold-child” options, like the menus? with the menus it worked, but i can t find my footer widgets; everything seems to be gone.
    also: can i move the code from the custom css field into my css file at the server? sorry for all the questions, it all new here.

    in reply to: Custom CSS Help #506831

    i also exported the theme settings before, just to be sure, but i can t even reset them. i m really desperate here.

    in reply to: Custom CSS Help #506829

    hi ismael,
    yes, i removed and re installed it; then imported parent settings. now the css is screwed. :(

Viewing 30 posts - 91 through 120 (of 143 total)