Jump to content

remove

Members
  • Posts

    62
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Netherlands

Recent Profile Visitors

2,790 profile views

remove's Achievements

Full Member

Full Member (4/6)

20

Reputation

1

Community Answers

  1. adrianmak: to start an animation when scrolling you can use WOW http://mynameismatthieu.com/WOW/
  2. nice work. When I try to load images (safari), like photo 7.3 and 7.4 for example the site hangs. the loading icon keeps loading. Photo 1.1 loads well. Meby something to look into.
  3. @ OrganizedFellow: I know this is an older post but the code works. Did you still find problems with it or found any errors? I'am trying to build a foundation site and would like to use the navigation code.
  4. @ Bernhardb: It is off topic but good to hear PG is working for you.
  5. @ BernardB: In some cases adding a row works for the best. You can call it a row in Bootstrap and Foundation or block-group in Pocketgrid. It all comes down to the same. I have been using Pocketgrid in the past but it didn't work for me. I actually got more and more respect for the big and proffesional css frameworks in there efforts to make websites compatible with all different kinds of devices and browsers. Coming from Bootstrap, Foundation brings me new powerful tools like Blog Grid and Interchange. You can use Custom download to reduce file size to a bare minimun.
  6. @DaveP: Thx, this code works perfect and will come in very handy! About the code: What does this line do? I doesn't make any sense to me. if($i == $colcount){ I also found a different approach that renders the same result. I did not test it thoroughly but it looks very PW friendly. Foundation has build in a Block grid. You can split up content of a list evenly. The code becomes more simple. I believe it works with building blocks with css style float:left;width:33%. <div class="row"> <?php $blocks = $page->children; echo '<ul class="medium-block-grid-3">'; foreach ($blocks as $block) { echo "<li><a href='{$block->url}'>$block->title</a></li>"; } echo '</ul>'; ?> </div>
  7. I switched from Bootstrap to Foundation and like it a lot. It mainly got my interest because PW forum members speaks so highly of Foundation. I need some help with the following code because foundation is rendering columns differently than Bootstrap. The following code creates rows with three columns automatically from children of pages. I use it to make portfolios, galleries or something like that. This code works perfect. <?php $columns = $page->children; $i = 1; echo '<div class="row">'; foreach ($columns as $column) { echo "<div class='medium-4 columns'> <a href='{$column->url}'>$column->title</a>"; if($i % 3 == 0) {echo '</div></div><div class="row">';} else {echo '</div>';} $i++; } echo '</div>'; ?> Foundation has a way to handle and correct incomplete rows/columns with an "end" class. So in my case I use a three column lay-out. If there are only five children my row is incomplete. In order to render completely, the last child should get a class "end", as described in the docs of foundation about incomplete rows. When I change this line and add the "end" class it renders fine, but than every column gets an "end" class of course. echo "<div class='medium-4 columns end'> How can I add the class "end" to only the last child (last column)?
  8. @ kongondo: Thank you for your fast reply. I will try it out but I am considering making a fresh install because its a new blog with still a couple of artikels. The neccesarry testing should take up at least the same amount of work.
  9. @kongondo: I'am running your blog and like it a lot. At this point I would like to add the option so people can give a comment. But I installed the blog without the comment feature. Is it possible enable comments without starting over and install a fresh blog?
  10. @Nico: Thx! Can you also take look at this part: When you fill in the Twitter Username, it prints in the metatags correctly. But when you visit another page and go back to the modules settings page, the field of Twitter Username is empty!
  11. @ Nico I believe the Google Preview shows the wrong path. Underneath the title the path of the admin page shows in stead of front end url.
  12. Build my first PW website...., and not my last. Like PW a lot. It is fun to work with and sometimes a challenge. Spent, more than once, some ours fiddling on code issues, but real proud when I got it to work. Could not have done it without the feedback of the members from this community, thank you! Modules I used: -Email Obfuscation -Form Builder -SEO -Blog -Google Analytics -Protected Mode -Wire Mail SMTP Other: -Bootstrap -Animate -WOW -Unslider Website: http://www.tweemansterk.nl
  13. I would like to do a request. Is it possible to remove the line breaks? <title>titel</title><meta name="keywords" content="voorbeeld, voorbeeld, voorbeeld"> <meta name="description" content="Dit is de omschrijving"> <meta name="image" content=""> <meta name="canonical" content="http://www.testpagina/"> <meta name="generator" content="ProcessWire 2.5.3"> <meta name="author" content=""> <meta name="robots" content="index, follow"> <meta name="og:site_name" content=""> <meta name="og:title" content="titel"> <meta name="og:url" content=""> <meta name="og:description" content="Dit is de omschrijving"> <meta name="og:type" content="website"> <meta name="og:image" content=""> <meta name="twitter:card" content="summary"> <meta name="twitter:site" content="@"> <meta name="twitter:title" content="titel"> <meta name="twitter:url" content=""> <meta name="twitter:description" content="Dit is de omschrijving"> <meta name="twitter:image" content="">
  14. @Nico: found a typo in the settings/install page Gogole Analytics Code
×
×
  • Create New...