Need some CSS help

by 5 replies
6
I'm not a CSS expert - or a wordpress expert -but I know enough to be dangerous - USUALLY.
I need some help making some content appear different in a widget than it appears now.
Right now, it shows IMAGE - with text info to the side, then the next image under that with text to the side. I need to have the images lined up in 4 or 5 columns with the text underneath.

Can anyone help? I'd be happy to do a trader of services for your help (if there is something I 'can' do for you!
#website design #css
  • Trade eh? What do you have to offer?
    I'd trade for cookies. I love cookies.

    Cash is good too. -

    Slickest, I can take care of it. Make me an offer.
  • a quick thing i wrote
    hope it helps you

    Code:
    <html>
    <head>
    <style type="text/css">
    div.imagebox
    {
      margin: 2px;
      border: 1px solid #0000ff;
      height: auto;
      width: auto;
      float: left;
      text-align: center;
    }	
    div.imagebox img
    {
      display: inline;
      margin: 3px;
      border: 1px solid #ffffff;
    }
    div.imagebox a:hover img 
    {
      border: 1px solid #0000ff;
    }
    div.description
    {
      text-align: center;
      font-weight: normal;
      width: 120px;
      margin: 2px;
    }
    </style>
    </head>
    <body>
    
    <div class="imagebox">
     <a href="klematis_big.htm"><img src="pic.jpg" alt="pic" width="110" height="90" /></a>
     <div class="description">Add a description of the image here</div>
    </div>
    <div class="imagebox">
     <a href="klematis2_big.htm"><img src="pic.jpg" alt="pic" width="110" height="90" /></a>
     <div class="description">Add a description of the image here</div>
    </div>
    </body>
    </html>
    • [ 1 ] Thanks
  • I will be SO glad when i can PM! I can read them if you want to send me email address?

    I am going to learn CSS - I am I am .. just not today I feel like i just need a lightbulb moment and then I'll understand all this.

    zebix thank you - but i don't know what to do with it or where to put it. Yes, I'm that ignorant of CSS
  • oh okay didn't read you want it for wordpress
    you'll have to edit some files for that but i'm not sure which ones :S

    i'll take a look at it when i have some time because i need to study now..
  • you can ask me any question, I'll help you any time...last week i completed my website.

Next Topics on Trending Feed

  • 6

    I'm not a CSS expert - or a wordpress expert -but I know enough to be dangerous - USUALLY. I need some help making some content appear different in a widget than it appears now. Right now, it shows IMAGE - with text info to the side, then the next image under that with text to the side. I need to have the images lined up in 4 or 5 columns with the text underneath.