Problem Adding divs to Activity Stream templates
- 
		Hi Folks, my first post for a couple of years- I am amazed at the progress Buddypress has made, awesome work! I have a problem that is stopping me in my tracks, has hung me up for a few days now and I can’t find a solution searching online. I want to make the Activity stream scroll horizontally, like a timeline. I can create the effect easily enough in HTML5 and CSS3 but have run into a basic problem within Buddypress. I have made a child theme, added a buddypress folder to this theme to which I added bptemplates/bplegacy/etc I have added some extra divs to the index.php template file inside the activity folder to create the horizontal slider 
 /* modification to allow horizontal presentation*/
 /* introduces 1) Holder 2) Slider 3) Slide */<div id="bpholder" class ="bpholder"> 
 <div id="bpslider" class ="bpslider">
 <div id="bpslide" class ="bpslide"><div class="activity" role="main"> <?php bp_get_template_part( 'activity/activity-loop' ); ?> </div><!-- .activity --> </div> 
 </div>
 </div>When I update the site and inspect elements in Chrome I see no sign of the new divs. It’s as if the additional code doesn’t exist. As a test I have tried adding divs to post-form.php, and home.php inside the ‘single’ folder, and get the same result, i.e. nada Please could you point me in the right direction? 
- The topic ‘Problem Adding divs to Activity Stream templates’ is closed to new replies.