• Hi, can anyone please help me, I’ve got a couple of websites (wordpress), and experience the following problem, when I click on a picture that was uploaded, it opens the picture in a new page and you have to click on the picture again to view it full size. ( Click on map https://pitbulls.vitezpitbulls.net/) On other sites when you click on the picture it opens direct full size…. Where do I make this adjustment to get my sites pictures to open directly in full size? please help as this is very annoying…

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)
  • Alwyn Botha

    (@123milliseconds)

    Moderator keesiemeijer

    (@keesiemeijer)

    can you put the content of your theme’s single.php in the pastebin and give a link back to it here.

    Thread Starter Vitez

    (@vitez)

    Hi 123milliseconds, no I think you understand me wrong, when I click on any picture uploaded to my website and you click on the picture it opens a new page with the picture again, instead of just opening the picture. So when he opens a new page you have to click on the picture again in order to view the full size.

    Hope this makes sense?

    Thread Starter Vitez

    (@vitez)

    Hi keesiemeijer,

    Not sure how to do this, can you please explain more in detail?

    thanks for your help.

    Moderator keesiemeijer

    (@keesiemeijer)

    You can copy the content of your theme’s single.php and paste it in the textarea under “Post a new Pastebin” and click “submit”. After submitting give us the url that you see in the address field of your browser.
    Or if the code between <p class="attachment"> ..... </p> is not to big you can post it here.

    Thread Starter Vitez

    (@vitez)

    Hope this is what you looking 4?

    /* begin Page */

    /* Created by Artisteer v3.0.0.33215 */

    #art-page-background-glare-image
    {
    background: none;
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/page_gl.png’,sizingMethod=’crop’)”);
    zoom: 1;
    }

    #art-page-background-middle-texture
    {
    height: expression(document.documentElement.clientHeight + ‘px’);
    }

    img
    {
    filter: expression(artFixPNG(this));
    }

    /* end Page */

    /* begin Box, Sheet */
    .art-sheet, .art-sheet-body
    {
    zoom: 1;
    }

    .art-sheet-tr, .art-sheet-tl, .art-sheet-br, .art-sheet-bl, .art-sheet-tc, .art-sheet-bc,.art-sheet-cr, .art-sheet-cl
    {
    font-size: 1px;
    background: none;
    }

    .art-sheet-tr, .art-sheet-tl, .art-sheet-br, .art-sheet-bl
    {
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/sheet_s.png’,sizingMethod=’scale’)”);
    }

    .art-sheet-tl
    {
    clip: rect(auto 34px 34px auto);
    }

    .art-sheet-tr
    {
    left:expression(this.parentNode.offsetWidth-68+’px’);
    clip: rect(auto auto 34px 34px);
    }

    .art-sheet-bl
    {
    top: expression(this.parentNode.offsetHeight-68+’px’);
    clip: rect(34px 34px auto auto);
    }

    .art-sheet-br
    {
    top: expression(this.parentNode.offsetHeight-68+’px’);
    left:expression(this.parentNode.offsetWidth-68+’px’);
    clip: rect(34px auto auto 34px);
    }

    .art-sheet-tc, .art-sheet-bc
    {
    width: expression(this.parentNode.offsetWidth-68+’px’);
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/sheet_h.png’,sizingMethod=’scale’)”);
    }

    .art-sheet-tc
    {
    clip: rect(auto auto 34px auto);
    }

    .art-sheet-bc
    {
    top: expression(this.parentNode.offsetHeight-68+’px’);
    clip: rect(34px auto auto auto);
    }

    .art-sheet-cr, .art-sheet-cl
    {
    height: expression(this.parentNode.offsetHeight-68+’px’);
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/sheet_v.png’,sizingMethod=’scale’)”);
    }

    .art-sheet-cr
    {
    left:expression(this.parentNode.offsetWidth-68+’px’);
    clip: rect(auto auto auto 34px);
    }

    .art-sheet-cl
    {
    clip: rect(auto 34px auto auto);
    }

    .art-sheet-cc
    {
    font-size: 1px;
    width: expression(this.parentNode.offsetWidth-68+’px’);
    height: expression(this.parentNode.offsetHeight-68+’px’);
    background: none;
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/sheet_c.png’,sizingMethod=’scale’)”);
    }
    /* end Box, Sheet */

    /* begin Header */
    div.art-header-png
    {
    font-size: 1px;
    background: none;
    behavior: expression(this.runtimeStyle.filter?”:this.runtimeStyle.filter=”progid:DXImageTransform.Microsoft.AlphaImageLoader(src='”+artGetStyleUrl()+”images/header.png’,sizingMethod=’crop’)”);
    }
    /*

    Thread Starter Vitez

    (@vitez)

    Hope this is what you looking 4?

    <?php get_header(); ?>
    <div class=”art-content-layout”>
    <div class=”art-content-layout-row”>
    <div class=”art-layout-cell art-content”>
    <?php
    get_sidebar(‘top’);
    global $post;
    if (have_posts()){
    if (art_get_option(‘art_single_pagination’)) {
    // previous_post_link | next_post_link
    art_pagination(array(‘next_link’ => art_get_previous_post_link(‘« %link’),’prev_link’ => art_get_next_post_link(‘%link »’)));
    }
    while (have_posts())
    {
    the_post();
    art_post_wrapper(
    array(
    ‘id’ => art_get_post_id(),
    ‘class’ => art_get_post_class(),
    //’thumbnail’ => art_get_post_thumbnail(),
    ‘title’ => art_get_meta_option($post->ID, ‘art_show_post_title’) ? get_the_title() : ”,
    ‘before’ => art_get_metadata_icons(”, ‘header’),
    ‘content’ => art_get_content(), // ‘content’ => ‘My post content’,
    ‘after’ => art_get_metadata_icons(”, ‘footer’)
    )
    );
    comments_template();
    }

    } else {
    art_post_wrapper(
    array(
    ‘title’ => __(‘Not Found’, THEME_NS),
    ‘content’ => ‘<p class=”center”>’
    .__( ‘Apologies, but the page you requested could not be found. Perhaps searching will help.’, THEME_NS)
    . ‘</p>’ . “\r\n” . art_get_search()
    )
    );
    }
    get_sidebar(‘bottom’);
    ?>
    <div class=”cleared”></div>
    </div>
    <div class=”art-layout-cell art-sidebar1″>
    <div class=”art-layout-glare”>
    <div class=”art-layout-glare-image”></div>
    </div>
    <?php get_sidebar(‘default’); ?>
    <div class=”cleared”></div>
    </div>
    </div>
    </div>
    <div class=”cleared”></div>
    <?php get_footer();

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Picture problem’ is closed to new replies.