Avatar of lapucca
lapucca
 asked on

How to style this so the facebook plugin is aligned on the bottom?

How can I have <div class="slideshow"> and <div class="facebook" align="center"> next to each other, aligned at the bottom?  Right now, the <div class="facebook" align="center"> is below facebook.  Thank you.


    <center>
          <div class="slideshow">
            <img src="img/Carousel Photos/keck-medical-center-usc-driveway.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/medical-plaza-banner.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/quad-with-keck-sign.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/USC_pdd_0147.jpg" alt="Doctor" width="375" height="236"/>
          </div>
       
        <div class="facebook" align="center">
            <iframe src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FKeck-Medical-Center-of-USC%2F276536222387052&width=238&colorscheme=light&show_faces=true&border_color=%23990000&stream=false&header=false&height=258" scrolling="no" frameborder="2px" style="overflow:hidden; width:238px; height:258px;" allowTransparency="true"></iframe>
        </div>
       

        <ul id="ticker01">
              <li><span>1/19/2012</span><a href="http://www.keckhospitalofusc.org/">Special announcement at Keck Hospital...</a></li>
              <li><span>1/19/2012</span><a href="http://keck.usc.edu/">Special announcement at Keck Medical School...</a></li>
              <li><span>1/19/2012</span><a href="http://www.ncbi.nlm.nih.gov/pubmed/">Special announcement at Pubmed...</a></li>
              <!-- eccetera -->
        </ul>

    </center>
Site.Master
base.css
CSSASP.NET

Avatar of undefined
Last Comment
LZ1

8/22/2022 - Mon
LZ1

Can you show a live link instead?

The first thing that has to go is the <center> tag.  That tag is depreciated and should not be used.  
>>>http://www.w3schools.com/tags/tag_center.asp 

The proper way to center block-level elements is to give it a width and use margin:0 auto;.

A live link, even if an example would help us help you much easier.
lapucca

ASKER
http://keckmed.usc.edu/pp/

I want to center it in any resolution.  Will the margin tag accommodate this?  thank you.
LZ1

Yes. That's the entire purpose of that way of doing it.  

Try this for your CSS .facebook:

.facebook {
    border: 20px none black;
    margin:0 auto;
    width: 230px;
}

Open in new window

Experts Exchange is like having an extremely knowledgeable team sitting and waiting for your call. Couldn't do my job half as well as I do without it!
James Murphy
lapucca

ASKER
It seems to work for the facebook plugin but not for the other 2 components.  I tried putting the class Centering but that doesn't do it.  I added it to the ticker01 but that doesn't work either.  And I don't think I can edit the slideshow css since it's part of the jQuery plugin.  And 2 items, facebook and the slideshow are still not displayed on the same level and aligned at the bottom.  thank you.

.CategoryDiv li
{
    margin-top:3px;
    width: 800px;
}



    <div class="Centering">
          <div class="slideshow">
            <img src="img/Carousel Photos/keck-medical-center-usc-driveway.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/medical-plaza-banner.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/quad-with-keck-sign.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/USC_pdd_0147.jpg" alt="Doctor" width="375" height="236"/>
          </div>
       
        <div class="facebook" align="center">
            <iframe src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FKeck-Medical-Center-of-USC%2F276536222387052&width=238&colorscheme=light&show_faces=true&border_color=%23990000&stream=false&header=false&height=258" scrolling="no" frameborder="2px" style="overflow:hidden; width:238px; height:258px;" allowTransparency="true"></iframe>
        </div>
       

        <ul style=" margin:0 auto;width: 800px;" id="ticker01">
              <li><span>1/19/2012</span><a href="http://www.keckhospitalofusc.org/">Special announcement at Keck Hospital...</a></li>
              <li><span>1/19/2012</span><a href="http://keck.usc.edu/">Special announcement at Keck Medical School...</a></li>
              <li><span>1/19/2012</span><a href="http://www.ncbi.nlm.nih.gov/pubmed/">Special announcement at Pubmed...</a></li>
              <!-- eccetera -->
        </ul>

    </div>
LZ1

I can't access the page now.
lapucca

ASKER
Please try again, I just updated it.  Thank you.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
LZ1

Give your .Centering class a width
lapucca

ASKER
I tried that already but still didn't work.  I just updated the sever.  Please check and see.  Thank you
LZ1

There's no width on the .Centering class

.Centering{margin:0 auto;}
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
lapucca

ASKER
Oops, sorry, I added it to the class below it by mistake.  please check now but it still not working though.  Thank you.
LZ1

Ok great.  Now all you need to do is make a slideshow class to your CSS and add the same margin:0 auto.  Like this:

.slideshow{margin:0 auto;}
lapucca

ASKER
so there will be 2 slideshow css class?  One in my base.css and one with jQuery plugin css?  How would that work?  Both classess will be merged into one and used by the page?
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
LZ1

You don't need 2 of them, but I didn't see any declarations in your page for the slideshow when I used Firebug.  I can only see the inline style that the Jquery is setting.
lapucca

ASKER
It's in the asp.net master file.  I have to name the images div to .slideshow according to jQuery plugin.  Why isn't it picking up the parent div tag's class of Centering?  Is there a way to add additional style to that div besides the class?  Thank you.


    <script type="text/javascript">
        $(document).ready(function () {
            $('.slideshow').cycle({
                fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
            });

            $(function () {
                $("ul#ticker01").liScroll();
            });
        });
    </script>

    <div class="Centering">
          <div class="slideshow">
            <img src="img/Carousel Photos/keck-medical-center-usc-driveway.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/medical-plaza-banner.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/quad-with-keck-sign.jpg" alt="Doctor" width="375" height="236"/>
            <img src="img/Carousel Photos/USC_pdd_0147.jpg" alt="Doctor" width="375" height="236"/>
          </div>
LZ1

It's not picking it up because that's not how it works. I understand the slideshow and Jquery requirement.  That's all fine.  

>>>Is there a way to add additional style to that div besides the class?
You could just do this:

<div class="slideshow Centering">
Your help has saved me hundreds of hours of internet surfing.
fblack61
lapucca

ASKER
okay, you're rigth.  Jquery uses that css clss name but I can still create that class in my base.css.  However, that seems to center the image location but the images and the facebook are still not aligned next to each other and lined up at the bottom.  Thank you.
LZ1

So both the FB box and the slideshow should be next to each other????????
lapucca

ASKER
I put a wrapper class around those 2 components.  yes, I would like the image and the facebook on the same level and aligned at the bottom.
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
LZ1

At the bottom of what?
lapucca

ASKER
I mean, both component should "aligned" at the bottom, basically, so they look like they're on the same level horizontally.  Right now one is on top of the other. Thank you.
LZ1

Ok ready?

Add float:left to the following elements:
.slideshow
.facebook

Add clear:both to the following elements:
.tickercontainer

Finally add margin-top:20px; to the following:
.slideshow


Let me know
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
lapucca

ASKER
Thank you so much for your patience and it is coming together nicely.  First, I can't edit the tickercontainer class.  That is a jQuery class for its plugin for the news ticker.  I did everything else you mentioned and you can see it looking nice in IE but completely messed up in FireFox.  I don't know what could be causing this.  Thank you.
ASKER CERTIFIED SOLUTION
LZ1

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
lapucca

ASKER
Ah, that was the final touch which completed this for me.  Thank you very much for hanging in there to help me.
LZ1

No problem at all.  Glad to help
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.