Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6389689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T03:26:08+00:00 2026-05-25T03:26:08+00:00

Edited this question entirely, not sure if it made sense previously. Ok, I am

  • 0

Edited this question entirely, not sure if it made sense previously.

Ok, I am having difficulty positioning some images on a website. I am using the slidedeck jQuery slideshow, and in the third slide I want a portfolio of work, so just to display 6 images (2 rows of 3).

In the index.html the slides are set up as follows;

<div id="slidedeck_frame" class="skin-voyager"> 
<dl class="slidedeck">

<dt>ABOUT US</dt> 
<dd>About the company here</dd> 

<dt>OUR SERVICES</dt> 
<dd>Company services here</dd>

<dt>PORTFOLIO</dt> 
<dd>Images of completed work here</dd> 

<dt>Contact Us</dt> 
<dd>Contact form here</dd>

</dl>
</div>

Each of these slides is formatted in the CSS sheet with the following tag;

.slidedeck dd.slide_1 

In the third slide, I need to be able to simply show rows of images using the CSS to position them. I have tried a number of things but can’t get it right. In the index.html I have tried;

<dt>PORTFOLIO</dt> 
<dd><img src="images/myImage1.png" width="130" height="130" />
</dd>

But that obviously just display an image, with no ability to format it.

I have also tried;

<dt>PORTFOLIO</dt> 
<dd>
<div>
    <img id="image1" src="images/myImage1.png" width="130" height="130">
</div>
</dd>

and then using the following CSS to position;

img#image1 {
position: relative;
top: 20px;
left: 10px;
z-index: 5;

}

But the image just doesn’t show up at all.

Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T03:26:08+00:00Added an answer on May 25, 2026 at 3:26 am

    You are styling with dd.slide_1 but none of the <dd> elements have that class applied.

    Edit

    Given this html:

    <dl class="slidedeck">
        <dt>PORTFOLIO</dt>
        <dd>
            <img src="images/myImage1.png" width="130" height="130" />
            <img src="images/myImage2.png" width="130" height="130" />
            <img src="images/myImage3.png" width="130" height="130" />
            <img src="images/myImage4.png" width="130" height="130" />
            <img src="images/myImage5.png" width="130" height="130" />
            <img src="images/myImage6.png" width="130" height="130" />
        </dd>
    

    You should be able to style your images like this

    .slidedeck dd img {
        /* add whatever styles you want */
    }
    

    If that isn’t working try adding !important after your style values. If this works investigate what CSS (perhaps from jQuery plugins) is interfering with your styles. Try not to leave !important in if you can help it.

    So for 2 rows of 3 images you would need this css

    .slidedeck dd {
        width: 390px; /* 3x your image width */
        overflow: hidden; /* To contain floats */
    }
    
    .slidedeck dd img {
        float: left;
        display: block;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I edited this question after i found a solution... i need to understand why
Edited Question: This should be clear. using System; namespace UpdateDateTimeFields { class Program {
I've edited this quite a bit and bolded my question at this point. I
Warning: This question has been heavily edited. I tried my best to guess the
NB: This question has been extensively edited to make it more relevant, for completeness
Edited: SOLUTION FOUND. This is strange and not the best solution, but I just
(I've edited this question to avoid distractions. There is one core question which would
I've heavily edited this question because responses indicated I wasn't being clear problem: UI
I have edited and simplified this question a lot. If I have this method
I edited a post of mine with this question, yet got no answers. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.