The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Help Please(Business website), Put table next to jquery slideshow
bleedz129
post Aug 24 2014, 01:27 PM
Post #1


Novice
**

Group: Members
Posts: 21
Joined: 24-March 14
Member No.: 20,600



Hi

I have a table and a jquery slideshow. I have been trying to wrap them or put them next to each other for the last hour now and it is not working.

CODE

<div id="wrapper">                                                                         //This is the div that is supposed to wrap them together

<div style="margin:30px auto;max-width:900px;">                       //this is the slideshow
    
   <div id="amazingslider-1">                                                          
        <ul class="amazingslider-slides" style="display:none;">
            <li><img src="images/IMG_0083.JPG" alt="IMG_0083" /></li>
            <li><img src="images/IMG_0100.JPG" alt="IMG_0100" /></li>
            <li><img src="images/IMG_0107.JPG" alt="IMG_0107" /></li>
            <li><img src="images/IMG_0118.JPG" alt="IMG_0118" /></li>
            <li><img src="images/IMG_0205.JPG" alt="IMG_0205" /></li>
        </ul>
        <ul class="amazingslider-thumbnails" style="display:none;">
            <li><img src="images/IMG_0083-tn.JPG" /></li>
            <li><img src="images/IMG_0100-tn.JPG" /></li>
            <li><img src="images/IMG_0107-tn.JPG" /></li>
            <li><img src="images/IMG_0118-tn.JPG" /></li>
            <li><img src="images/IMG_0205-tn.JPG" /></li>
        </ul>
        <div class="amazingslider-engine"><a href="http://amazingslider.com" title="jQuery Slideshow">jQuery Slideshow</a></div>
    </div>
    
    
</div>
<div class="CSSTableGenerator" >                            //this is the table
                <table >
                    <tr>
                        <td>
                            Services
                    </tr>
                    <tr>
                        <td >
                            Purchasing Agent
                        </td>
                    </tr>
                    <tr>
                        <td >
                            Service Representation
                        </td>
                    </tr>
                    <tr>
                        <td >
                            Financial
                        </td>
                    </tr>
                    <tr>
                        <td >
                            Negotiations
                        </td>
                        
                    </tr>
                    <tr>
                        <td >
                            COnsumer Protection
                        </td>
                        
                    </tr>
                </table>
            </div>
</div>



CSS CODES BELOW

CODE
#amazingslider-1 {
display:block;position:relative;margin:16px auto 56px; margin-left: 00px; margin-top: 200px;    ///for the slideshow
}
.CSSTableGenerator {                                                                                                                        //for the table
    margin:0px;padding:0px;
    width:20%;
    box-shadow: 10px 10px 5px #888888;
    border:1px solid #000000;
    
    -moz-border-radius-bottomleft:9px;
    -webkit-border-bottom-left-radius:9px;
    border-bottom-left-radius:9px;
    
    -moz-border-radius-bottomright:9px;
    -webkit-border-bottom-right-radius:9px;
    border-bottom-right-radius:9px;
    
    -moz-border-radius-topright:9px;
    -webkit-border-top-right-radius:9px;
    border-top-right-radius:9px;
    
    -moz-border-radius-topleft:9px;
    -webkit-border-top-left-radius:9px;
    border-top-left-radius:9px;
}



I will be very grateful thank you in advance smile.gif

any additional questions you have ask me but pretty much i want them next to each other
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post Aug 24 2014, 02:16 PM
Post #2


.
********

Group: WDG Moderators
Posts: 9,656
Joined: 10-August 06
Member No.: 7



Hard to say without knowing the size of the table content, but perhaps you could float the table DIV to the left. As a bonus, that will make the slideshow move down below the table in narrow browser windows instead of causing an annoying horizontal scrollbar.

BTW comments in HTML look like this:

CODE
<!-- comment -->

and in CSS like this:

CODE
/* comment */
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 25th April 2024 - 03:57 AM