Jump to content

kuba2

Members
  • Posts

    103
  • Joined

  • Last visited

Everything posted by kuba2

  1. A small gif worked perfectly...maybe it's just the big size...? Can the gif be faulty? Thanks
  2. Hi there I have a 6 MB gif...is that too big? Should that work nonetheless? It's endlessly saving... Thanks Kuba
  3. Hi there Does anybody know, if there is a good Hotel booking solution available. I am looking for something solid without the need for extensive PHP knowledge. Something like this: http://www.sabrehospitality.com/solutions/hotel-booking-engines Does anybody has experience with that? I am trying to use a tried and tested solution. Something like Shopify for ecommerce. It should look like in the attached picture ( right upper corner ) Thanks a lot Jakob
  4. Codeacademy ist great! Exactly the right thing for my slow brain Thanks
  5. Thanks a lot! Great support...now I have some learning to do
  6. Hello there This is a very overall question.... I am fairly new to CMS and PHP, but I am managing the essentials. Still, I am struggling with PHP. I worked through quite some youtube tutorials and my brain is beginning to adapt, but the theory is a little different than the practice. All the pieces are there, but I have trouble putting them together. Is there a nice tutorial to train processwire specific PHP? How can I get prolific in PHP for PW? Theres tons of overall PHP lessons, but I am looking for something tying into PW. Programming is new to me ( coming from the design side ) and it opposes me quite hard I would be very thankful for any suggestions Thanks Jakob
  7. You can find an example here: http://blattwerk-bueren.ch/process/nachsaison_foto/ the first picture is a vertical one, and the top and bottom are cut. Can I somehow fit the whole image in the window? The Php for the gallery: <div class="galerie"> <?php foreach($page->bilder as $image) { $thumbnail = $image->size(800,600); echo "<div><img src='{$thumbnail->url}' alt='{$thumbnail->description}' ></div>"; } ?> </div> <div class="galerie-thumbs"> <?php foreach($page->thumbs as $image) { $thumbnail = $image->size(200,150); echo "<div><img src='{$thumbnail->url}' alt='{$thumbnail->description}' ></div>"; } ?> </div> </div> script for slick <script type="text/javascript"> $(document).ready(function(){ // $('.galerie').slick({ accessibility: true, // autoplay: false, // autoplaySpeed: 3000, // cssEase: 'ease', // adaptiveHeight: false, $('.galerie').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: false, fade: true, asNavFor: '.galerie-thumbs' }); $('.galerie-thumbs').slick({ slidesToShow: 3, slidesToScroll: 1, asNavFor: '.galerie', // dots: true, centerMode: true, focusOnSelect: true }); // }); }); </script>
  8. Hello Not sure, if this is the right place for a possibly simple question about slick slider. How can I force my vertical images in my horizontal slick slider window to fit the screen? I have a set height and width via php for horizontal images and the vertical ones scale accordingly. Is there some kind of max-height option? Many thanks Jakob
  9. It seems I found the solution.... I had to generate the font in Fontlab anew and use the new one.....probably something I had before with .jpg files from 2009....I had to save them in PS anew and they worked.....just some old digital files which are out of date
  10. Hello there I have a strange problem with font-face. I build a html site and used four font-face fonts which work perfectly with the html site on the server. http://blattwerk-bueren.ch/test/ Now I am implementing processwire, so everything is php and now two of the fonts won't work... http://blattwerk-bueren.ch/process/ The Arista Fonts doesn't work, but the Trade Gothic works...I don't understand Does anybody have a suggestion? Ist the Arista font somehow forbidden or something like that...... The php doesn't like it? please help Many Thanks Jakob That's in my CSS file at the top @font-face { font-family: "Arista"; src: url("../fonts/Arista2.0.ttf"); } @font-face { font-family: "Aristalight"; src: url("../fonts/Arista2.0_light.ttf"); } @font-face { font-family: "ghoticlight"; src: url("../fonts/TradeGothicLH-Extended.ttf"); } @font-face { font-family: "ghoticbold"; src: url("../fonts/TradeGothicLH-BoldExtended.ttf"); }
  11. Hi there I have made a basic photogallery on the website ( http://olikehrli.ch/galerie/ ) I created with processwire ( foreach loop ), but there are only photos and captions for fancybox. What I need to do is a product photo gallery with descriptions ( attached images ) and with page numbers. I looked into all the tutorials, but I guess I need a push. Can anybody please point me in the right direction with the php? I am learning php on youtube, but it's not processwire specific 8 ( if there is such a thing ), so I am still quite in the dark. I guess there isn't a ton of code to write, but I am a bit overwhelmed. Any help would very much appreciated. Thanks a lot Jakob
  12. Thanks again. It works, when I change it in the markup-blog. render Posts somehow didn't work... Great stuff! Love the forum All the best Jakob
  13. Great stuff! Thanks Could You maybe make a similar tutorial for removing the comments count number on the top right ( image )? It isn't needed in my case. Thanks again!
  14. Thanks a lot for Your time. All the best
  15. Hi Kongondo Thanks for all the help I got from You. I have the blog working, and everything is great. I am not yet good with PHP...still lots to learn. The website I made is http://olikehrli.ch/. The titles of the individual posts are still links, like in Your Demo. I would like to undo that. I just need the titles with no linkage. Could You please tell me how I can do that? I looked through all the Blog templates and still have no idea. Thanks a lot All the best Jakob
  16. Thanks! I disabled the Pocketgrid, no block classes I'll keep looking
  17. Hello again Nonetheless, there is one small thing. I am using Foundation 6 as framework and all was fine with two columns ( Main -left and sidebar- right ). Now I have put the blog into the main column and the sidebar isn't anymore on the right, but wandered off to the bottom. I guess the solution is in the Blog.css... What could that be? Thanks a lot
  18. Hello I have installed the blog with the blank pages. Of course the wrong one.... I need the files with the blog-templates to get it working. Now I am wondering if I can just copy the files with blog-templates from another server onto this one and just overwrite the blank-blog templates. The blog is working on the older test-server ( http://jakubdegler.ch/user3/nojs/ ). Can it be that simple ( hope so ) Thanks for any help Jakob ____________________________________ IT WORKED! I WAS AFRAID SO I ASKED, BUT THEN I GATHERED SOME COURAGE...et voila Thanks again for the great Module Kongondo!
  19. Deleted! I posted a question and found the answer right after it Jakob
  20. Hi there...I feel very stupid! Thanks .... Merci for the help!!!! A last thing. I got it working, so far so good! But I would like to make it open automatically, when the page loads..... What sort of script do I have to add? Thanks a bunch Jakob
  21. Aren't they in the foundation.js? Have to look Thanks! I am using this link: http://foundation.zurb.com/sites/docs/v/5.5.3/components/reveal.html Is it possible, that Yours goes to Foundation 5?
  22. Hi there I'm trying to get Reveal Modal ( Pop Up Window ) in Foundation 6 working, but somehow I am not able to do so. Can anybody please tell me what is wrong with my Code? I guess I am not seeing the obvious once again Many Thanks Jakob The following code has just the Reveal Modal code for clarity: <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Foundation | Welcome</title> <link rel="stylesheet" href="css/foundation.css" /> <link rel="stylesheet" href="css/app.css" /> <link rel="stylesheet" href="css/style.css" /> </head> <body> <!-- ____________REVEAL MODAL________________ --> <a href="#" data-reveal-id="myModal">Click Me For A Modal</a> <div id="myModal" class="reveal-modal" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog"> <h2 id="modalTitle">Awesome. I have it.</h2> <p class="lead">Your couch. It is mine.</p> <p>I'm a cool paragraph that lives inside of an even cooler modal. Wins!</p> <a class="close-reveal-modal" aria-label="Close">×</a> </div> <!-- ____________END REVEAL MODAL________________ --> <script src="js/vendor/jquery.min.js"></script> <script src="js/vendor/what-input.min.js"></script> <script src="js/foundation.min.js"></script> <script src="js/app.js"></script> <!-- ____________REVEAL MODAL SCRIPT________________ --> <script> $(document).foundation(); </script> </body> </html>
×
×
  • Create New...