jQuery – how to?

Viewing 14 posts - 1 through 14 (of 14 total)
  • #16996
    Geri
    Participant

    Hi!

    Maybe it’s not a case for Pinboard but still a problem for me using this theme.

    I wanted to run a fullscreen slideshow before you land on my blog.
    I asked for help to enlarge the slider – no answer…

    Now I downloaded a jQuery fullscreen gallery plugin, but the installation sucks.
    I found out, every Installation of jQuery plugins are not working – everytime the same error.

    I read about to load it through the functions.php…

    So, here’s the point I quit.

    Is that right?
    Is there somewhere a how to…?

    Any help appreciated!

    Greets
    Geri

    #16997
    Myleene
    Participant

    Customize the max-width of the wrapper

    #16998
    Geri
    Participant

    Not the width is my problem – it’s the height…

    #16999
    Myleene
    Participant

    ooooh well.
    You found it. Height is stored here
    add_image_size( 'slider-thumb', 1140, 395, 1 );
    You modified your function.php and did not uploaded image to the new size.

    You have to upladed picures to the new size.

    I tried it it works.

    #17000
    Myleene
    Participant

    try 9999, it’s unlimited height

    #17004
    Geri
    Participant

    Hi Myleene!

    Thnx for your answer – I will try it this evening (it’s morning right now here in Vienna)…

    I really apreciate it…!

    Greets
    Geri

    #17008
    Geri
    Participant

    Yes, it works! Thanl you a lot!!!!

    But changed back the full width, didn’t look like I assumed that it will.
    At least the height is like I want now.

    Maybe you know how to get rid of the header? At all…?

    And how to put the menue under the slider pics…?

    Greetings from Vienna

    #17009
    Myleene
    Participant

    In your personnal CSS :
    Only the menu

    #site-title, #site-description, #searchform, #social-media-icons {
    display: none;
    }
    #header {
    border-top: none;
    }

    Get rid of the header completly

    #header {
    display: none;
    }

    It’s possible to move the menu under the slider, you need to hide completly the header (see above) and also use a child theme with a modified page.php or landinpage.php or template_XXX.php (i don’t know what you use), and add “nav access code” to this page upon the “slider code”

    #17010
    Geri
    Participant

    Sounds pretty difficult, I’ll try it on the weekend…!

    Thank you so much..!

    #17011
    Myleene
    Participant

    no, a child theme is easy πŸ˜‰ install it as a theme. it’s a zipfile with a style.css file with :

    /*
    Theme name: Pinboard My Child Theme
    Theme URI: http://www.onedesigns.com/wordpress-themes/pinboard
    Author: Geri.at
    Author URI: http://www.geri.at/wordpress/
    Description: A child theme for WordPress Pinboard Pinboard
    Version: v0.1
    Tags: 
    Template: pinboard
    */
    
    @import url("../pinboard/style.css");
    

    You can add what you want in the CSS and as much as you want of custom pinboard page.
    You should never modify directly you theme files…


    tell what template.php you use and i will try to help you

    • This reply was modified 10 years, 5 months ago by Myleene.
    • This reply was modified 10 years, 5 months ago by Myleene.
    #17014
    Geri
    Participant

    Myleene, thank you so much!

    I’m mobile right now, on weekend I will be home, so I can try.

    Again, thank you for your help you already gave me…!

    Regards
    Geri

    #17078
    Geri
    Participant

    Hi!

    Now I did change the image dimensions and made the new images in this size (and uploaded them).
    No effect…

    I can change the wrapper with:

    #wrapper {
    	position:relative;
    	max-width:1680px;
    	margin:0 auto; 
    	box-shadow:0 0 18px rgba(0, 0, 0, .4);
    	background:#f8f8f8;
    	overflow:hidden;
    }

    but then the whole design changes n a way I don’t like.

    I want the wrapper the old sitze by 1140px and the slider images in the new dimensions, but – how…?

    Greets
    Geri

    • This reply was modified 10 years, 5 months ago by Geri.
    • This reply was modified 10 years, 5 months ago by Geri.
    #17083
    Myleene
    Participant

    yes if the wrapper is full width, your background is not displayed anymore…

    Actually the slider is located in the wrapper and you can’t overlap it…
    You have to close the wrapper before the slider and then reopen it after the slider. (don’t forget to add the new width for the slider’s image).
    I tried it works.

    In header.php :
    Replace the last line
    </header><!-- #header -->
    with

    		</header><!-- #header -->
    	</div><!-- #wrapper -->


    In page.php, index.php, template-landing-page.php :
    Replace :
    <div id="container">
    with

    	<div id="wrapper">
    	<div id="container">

    This works.
    Don’t forget to modify slider width in function.php and reupload image because the ratio will be modified or try daniel’s advice, ajax thumbnail rebuild.
    After perhaps you will have to do some ajustment, navigation button or something else???
    I hope i forgot nothing.

    PS : If You want, You can also reopen the wrapper after :

    		<?php if( pinboard_get_option( 'slider' ) ) : ?>
    			<?php get_template_part( 'slider' ); ?>
    		<?php endif; ?>
    #17086
    Geri
    Participant

    Myleene, you made my day…!

    Thank you, thank you very much!
    Now, it’s like I was imaging it.

    Greetings from Vienna!

Viewing 14 posts - 1 through 14 (of 14 total)

You must be logged in to reply to this topic.