Okay
  Public Ticket #1229838
Portfolio + slider, Main Slider, Map
Closed

Comments

  • Lars started the conversation

    Hello,

    first, thanks for your nice theme, great work!
    I have several questions:

    1. Portfolio section: is it possible to change the thumbnail dimensions from landscape to portrait? We do a lot of print stuff in DinA4 high format … which fits better in portrait format. The same would be in the slider on the detail site. At least square format? Possible?

    2. Main slider: I have made a normal main slider, but have yet only one slide (more to come?). Is it possible to disable the arrows on the left and right? They have no use if you only have one slide …

    3. Contact map: can I link directly from the map to (big) google map (new tab) with pointer/adress at the correct position? Would be nice for directions planning.

    Thanks very much for your help!
    Lars

  •  1,973
    Support replied

    Hello Lars,

    1. that would be custom work and involve our web designer.

    2. yes, you can hide the arrows with custom css

    .clapat-slider .flex-direction-nav a, .classic-slider .flex-direction-nav a {

       display: none;

    }

    in theme options -> styling options -> custom CSS


    3. This again would imply custom work. if you open inline_scripts.php you would notice

    var contentString = '<div id="content">'+
                        '<div id="siteNotice">'+
                        '</div>'+
                        '<h2 id="firstHeading" class="firstHeading"><?php echo addslashes($global_theme_options["gmap_company_name"]); ?></h2>'+
                        '<div id="bodyContent">'+
                        '<p><?php  echo addslashes($global_theme_options["gmap_company_info"]); ?></p>'+
                        '</div>'+
                        '</div>';

    which basically shows the bubble with company address. So that where you should try transforming it into a link to a new window.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Lars replied

    Hello,

    thank you for the quick answer!

    1. That means you need more time, right?

    2. Thanks, works fine.

    3. I made it another way (I'm no good in php) …

    Lars

  •  1,973
    Support replied

    Hey Lars,

    I mean you can have this effect:

    http://clapat.ro/themes/newave-reloaded/#portfolio

    But there is not 'tall' (or portrait) sizes.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Lars replied

    Hello,

    thank you for your reply.

    Does it mean that I can "build" a portfolio item 4 times as big as the others? No possibility at all for a high format?
    What a pity – but I can live with it :-)

    I have another question: is it possible to give the "go back to top" button another ancor, like the portfolio or other section?

    Thank you!

    Lars

  •  1,973
    Support replied

    Hi Lars,

    add an anchor link with the section id:

    for example to go back to the portfolio section


    <a class="newave-button move black" href="#portfolio" target="_self" rel="nofollow">Start</a>

    it's also important to have the class 'move' in it.

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Lars replied

    Hello,

    and thank you – but where do I put the code?

    Lars

  •  1,973
    Support replied

    A, ok so you want to modify the back to top link from the footer.

    in this case open footer.php and 

    modify line 44 to

    <a href="#portfolio" class="move"><div id="menu_top"><div id="menu_top_inside"></div></div></a>

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Lars replied

    Hello,

    thank you - you're perfect :-)

    Lars