inherit
151650
0
Jul 29, 2018 18:13:48 GMT -8
• Ambrose •
1,077
February 2010
shoggard3
|
Post by • Ambrose • on Mar 12, 2016 21:35:20 GMT -8
This does not have to do with ProBoards, but I have come here in the past because I was able to find good assistance quickly. I'm trying to change the appearance of my Models page on my youth modeling project's website (www.yrmodeling.com)... I can't get the tables to appear properly, so I can't put in the info until I can figure that out. If anyone could help, please do! I have attached a picture of what I'm trying to do as to make it easier to understand. Attachments:
|
|
inherit
8154
0
Jun 15, 2022 20:54:48 GMT -8
trent
Rater of strange scales, and does the math by hand translating my weird scales to a 1-10 scale
1,082
March 2003
trent
|
Post by trent on Mar 15, 2016 22:05:25 GMT -8
I'm not an html expert,but I think you'll have to put in a table within a table I can't get the 3 columns on the right
<table width="67%" border="5" cellspacing="0" cellpadding="4"> <tr> <!-- Row 1 Column 1 --> <td > <b> R1C1 </b> </td> <!-- Row 1 Column 2 --> <td > <b> <table><br> <td>pic</td> </b> </td> </tr> <tr> <!-- Row 2 Column 1 --> <td > <b> R2C1 </b> </td> <!-- Row 2 Column 2 --> <td > R2C2 </td> </tr> <tr> <!-- Row 3 Column 1 --> <td > <b> R3C1 </b> </td> <!-- Row 3 Column 2 --> <td > R3C2 </td> </tr> </table>
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 15, 2016 22:39:05 GMT -8
Hi • Ambrose • , I moved this to where it fits a bit better. Try this: <style> #my-wrapper{width:500px;border:3px solid black;padding:8px;} #first_box{float:left;border:1px solid black;padding:8px;} #first_box img{width:150px;height:150px;} #little_boxes_wrapper{width:220px; float:left;} #little_boxes{width:200px;height:50px;border:1px solid black;margin: 0px 8px 8px 8px;} </style> <div id="my-wrapper"> <div id="first_box"> <a href="http://link.com"><img src="http://i657./uu300/EliteList/Bkgrns/4x4/CC/tud26.png"></a> </div> <div id="little_boxes_wrapper"> <div id="little_boxes">Content</div> <div id="little_boxes">Content</div> <div id="little_boxes">Content</div> </div> </div> <p style="clear:left;"></p>
That should get you started and you can customize the css. Just make sure you don't make something too big or it will throw the little boxes below the image.
|
|
inherit
151650
0
Jul 29, 2018 18:13:48 GMT -8
• Ambrose •
1,077
February 2010
shoggard3
|
Post by • Ambrose • on Mar 17, 2016 17:02:23 GMT -8
Tumbleweed, That looks good. I used it but had to change a few things so I could get it looking the way I want. But now I have to use so many <br />.'s... Any way I can put spaces between the boxes while maintaining the main box's height? I'm also thinking about making the modeling types scroll-able from left to right but no idea how to do that.
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 18, 2016 10:27:21 GMT -8
Tumbleweed , That looks good. I used it but had to change a few things so I could get it looking the way I want. But now I have to use so many <br />.'s... Any way I can put spaces between the boxes while maintaining the main box's height? I'm also thinking about making the modeling types scroll-able from left to right but no idea how to do that. Instead of breaks just add margins to them. I already had some margins in there: So this .... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 0px 8px 8px 8px;} ...might be this... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 8px 8px 18px 8px;} (in case you don't know, the first pixel amount if for the top of the box, then right, then bottom and then left. I just changed the bottom margin amount.) Oh, edit because I forgot to address the scroll question you had. When you say scroll do you mean like a marquee or do you mean with a manual scroll bar at the bottom?
|
|
inherit
151650
0
Jul 29, 2018 18:13:48 GMT -8
• Ambrose •
1,077
February 2010
shoggard3
|
Post by • Ambrose • on Mar 18, 2016 20:07:27 GMT -8
Tumbleweed , That looks good. I used it but had to change a few things so I could get it looking the way I want. But now I have to use so many <br />.'s... Any way I can put spaces between the boxes while maintaining the main box's height? I'm also thinking about making the modeling types scroll-able from left to right but no idea how to do that. Instead of breaks just add margins to them. I already had some margins in there: So this .... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 0px 8px 8px 8px;} ...might be this... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 8px 8px 18px 8px;} (in case you don't know, the first pixel amount if for the top of the box, then right, then bottom and then left. I just changed the bottom margin amount.) Oh, edit because I forgot to address the scroll question you had. When you say scroll do you mean like a marquee or do you mean with a manual scroll bar at the bottom? Not sure about the scroll because I'm still working out the layout and all that... I wanted a manual scroll bar, if I was to go with that idea.
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 23, 2016 11:01:06 GMT -8
Instead of breaks just add margins to them. I already had some margins in there: So this .... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 0px 8px 8px 8px;} ...might be this... #little_boxes{width:200px;height:50px;border:1px solid black;margin: 8px 8px 18px 8px;} (in case you don't know, the first pixel amount if for the top of the box, then right, then bottom and then left. I just changed the bottom margin amount.) Oh, edit because I forgot to address the scroll question you had. When you say scroll do you mean like a marquee or do you mean with a manual scroll bar at the bottom? Not sure about the scroll because I'm still working out the layout and all that... I wanted a manual scroll bar, if I was to go with that idea. Manually scrolling left to right is kind of a bear to do but I did do it on one test site so if you are actually going to use the code I gave you, let me know and I'll work on the scroll.
|
|