Jump to content

Maverick

Members
  • Posts

    30
  • Joined

  • Last visited

Everything posted by Maverick

  1. kongondo, thanks for pointing it out BerhnhardB, interesting, so let's say the blog profile uses bootstrap grids, to get posts nested inside of a grid, perhaps I would need to do something with this on line 21 in post.php <div class='post' id='post-<?php echo $page->id; ?>'> and change it with something like this... <div class="row"> <div class='post col-md-3' id='post-<?php echo $page->id; ?>'> but by doing this I'm not really splitting the posts into columns... any possible directions on using grids as solution?
  2. Hey there guys, I got the blog profile as learning environment and trying to understand pw and php in general, going through the tutorials etc... what I wanted to try is to split the posts content area in multiple columns. Default it's standard one column displaying posts in a vertical way. <div id="bodycopy"> <?php if($headline) echo "<h2>$headline</h2>"; echo $content; ?> </div> How would you go about splitting the posts into 4 or 5 columns? I've tried to split it just by css #bodycopy{ width: 25%; float: left; } but that's only making bodycopy to be 25% which isn't the goal here Any ideas? directions?
  3. For some strange reason I believe I kept copying the old version of pw. Now it works. Thanks
  4. Hey guys, Can anyone point me where this theme is? In the tutorials I see that I should see Reno theme "not installed" under Modules - Core, but I do not see it. I cannot find it in Modules whatsoever? I apparently am using the latest master release of processwire 2.5.2 but when I was installing it and in the admin it still says 2.4/2.4.0 so not sure if I'm getting the right one...
  5. Hey there guys, I am starting to get to know processwire a little and just installed the Blog profile as a learning enviroment. So far I've learnt a bit about translating admin dashboard, now I'm playing with the front end translation for quests and I can't figure out how to translate the search-form placeholder (without hardcode changing it in the main.inc - also it seems that you can't add main.inc to the language manager as that file has no translatable phrases?) but the main.inc contains the search-form placeholder: placeholder='<?php echo $searchPage->title; ?>'> also I cannot find anything related to translation of the month names could you give me some tips, direction with it?
×
×
  • Create New...