Hi
I'm having an issue with the sidebar. I have moved the sidebar from the right side to the left, which would show on some pages but on others where I use images or views the sidebar appears below content in the left. I'm new to Drupal and I can't get this figured out. Can you please send some suggestions.
The page I'm working on a subpage of About and I'm showcasing team members of company by using the about-member graphics. On the left sidebar I would like to have a submenu to show all subpages of the parent About. But Because I'm using images the sidebar shifts. I tried modifying the width of both, but that didn't do anything. I don't know what else to do I'm still a beginner so I don't know the little code tricks to resolve this issue.
http://site.dev3.webenabled.net/team

I have include a snapshot of the CSS for sidebar and about member

CommentFileSizeAuthor
#5 team.txt4.57 KBvesselav
#2 page.tpl_.txt8.27 KBvesselav
sidebar.png37.32 KBvesselav
about member.png162.15 KBvesselav

Comments

gtsopour’s picture

Assigned: Unassigned » gtsopour

Hello vesselav,

could you please attach your changed page.tpl.php?

Thanks
/George

vesselav’s picture

StatusFileSize
new8.27 KB
gtsopour’s picture

I think that you have an extra </div> inside the html mark up the "Team" node. Could you please check this or just paste here (inside code tags) your Team page's content?

Thanks
/George

vesselav’s picture

Our Team

Only local images are allowed. print base_path() . drupal_get_path('theme', 'corporateclean') ;/mockup/about-member-doug.png" style="float:left; padding:0 5px 0 0;"/>Doug Dormer
President and Founder



Doug has been involved in the independent living movement all his life ........text continues

Only local images are allowed. print base_path() . drupal_get_path('theme', 'corporateclean') ;/mockup/about-member-jonathan.png" style="float:left; padding:0 5px 0 0;"/>

Jonathan Smolowe

Executive Vice President, Sales and Marketing



Following a 12-year career at IBM in a variety of sales and management positions, ..............more text

Only local images are allowed. print base_path() . drupal_get_path('theme', 'corporateclean') ;/mockup/about-member-brad.png" style="float:left; padding:0 5px 0 0;"/>Brad Chick
Chief Technology Officer

In 1994, Brad co-founded Do It Sports, Inc., the first on-line participatory sports registration system. ...........more text

Only local images are allowed. print base_path() . drupal_get_path('theme', 'corporateclean') ;/mockup/about-member-randy.png" style="float:left; padding:0 5px 0 0;"/>Randy Johnson
VP of Product Servicesr

Randy has spent the last 12 years focused on building and running quality ............more text

vesselav’s picture

StatusFileSize
new4.57 KB

If that is not readable here is a txt file

gtsopour’s picture

Hello vesselav,
just remove one of your two </div> tags at the end of the "Team" node. Finally, your code should be the following:

<div class="about-members">
<h2>Our Team</h2>

<div class="about-member left">
<img src="<?php print base_path() . drupal_get_path('theme', 'corporateclean') ;?>/mockup/about-member-doug.png" style="float:left; padding:0 5px 0 0;"/><strong>Doug Dormer</strong>
<div style="padding:0 0 0 0; display:inline; font-style:italic;">President and Founder</div>
<br>
Doug has been involved in the independent living movement all his life - even before it was called an independent living movement. The child of two blind parents, Doug appreciates the challenges of living independently. A graduate of the University of Michigan, Doug began his career as a certified public accountant with Coopers & Lybrand, CPAs. While there, Doug co-authored a book on healthcare reform initiatives designed to help hospitals become more efficient. Doug served as general partner in several successful real estate limited partnerships and was responsible for designing transactions, raising capital, arranging for construction, managing operations and selling properties worth over $5 million. From 1991 to 2002 Doug served as channel partner manager, national account manager and regional manager with Bottomline Technologies, Inc. a global provider of secure financial systems for the financial, healthcare and manufacturing industries. During his time with Bottomline, revenue grew from less than $1 million to over $75 million. The company went public in 1999. More recently, Doug has served in senior management positions in publicly traded and start-up firms dealing with IT security and emergency response.</div>

<div class="about-member right">
<img src="<?php print base_path() . drupal_get_path('theme', 'corporateclean') ;?>/mockup/about-member-jonathan.png" style="float:left; padding:0 5px 0 0;"/><h4>Jonathan Smolowe</h4>
<div style="padding:0 0 0 0; display:inline; font-style:italic;">Executive Vice President, Sales and Marketing</div>
<br>
Following a 12-year career at IBM in a variety of sales and management positions, Jonathan joined Bottomline Technologies in 1990 as one of its original sales executives. In his 19 years at Bottomline, Jonathan delivered an unparalleled record of accomplishment in field sales, sales management and general management. His success enabled the Company to achieve recognition and industry dominance in numerous domestic and international markets. With his leadership, the company grew from no revenue to a public company with over $130 million in annual sales. Jonathan is a graduate of Princeton University with a degree in Economics.</div>

<div class="about-member left">
<img src="<?php print base_path() . drupal_get_path('theme', 'corporateclean') ;?>/mockup/about-member-brad.png" style="float:left; padding:0 5px 0 0;"/><strong>Brad Chick</strong>
<div style="padding:0 0 0 0; display:inline; font-style:italic;">Chief Technology Officer</div>

In 1994, Brad co-founded Do It Sports, Inc., the first on-line participatory sports registration system. This is the system used by runners, swimmers, and cyclists to register for competitive events. In 2004, Brad sold Do It Sports to The Active Network, which today is the largest on-line participatory sports services provider in the world. Brad holds degrees from Stanford University and the University of Michigan.</div>

<div class="about-member right">
<img src="<?php print base_path() . drupal_get_path('theme', 'corporateclean') ;?>/mockup/about-member-randy.png" style="float:left; padding:0 5px 0 0;"/><strong>Randy Johnson</strong>
<div style="padding:0 0 0 0; display:none; font-style:italic;">VP of Product Servicesr</div>
 
Randy has spent the last 12 years focused on building and running quality assurance departments and customer support operations for high growth consumer-focused technology companies. Most recently Randy served as Director of Quality Assurance for Allconnect, a leading provider of services for connecting consumers with home services and utilities. Randy also spent 4 years running QA and Customer Support for a Enterprise Security Risk Measurement software company. Randy has a vested interest in our success due to having had a quadruple by-pass and type 2 diabetes. He has first hand knowledge of the difficulties in managing and maintaining health information with multiple information points.</div>

</div>

In addition, configure your css code inside style.css file as the code below:

#main { float:right; width: 620px; padding:0 0 0 60px; margin:0; }

#sidebar { float:left; width: 280px; padding:0; } 

Thanks
/George

vesselav’s picture

Thanks
That fixed it..

gtsopour’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.