SketchUp Sketchup Components Collection (SCC) Discussion

Discussion in 'Modding' started by jezmck, 25 Nov 2003.

  1. Teyber

    Teyber ******

    Joined:
    18 Mar 2007
    Posts:
    1,369
    Likes Received:
    9
    are you going to pay them or are you asking for hours of time from a skilled person for nothing? why not to it youself
     
  2. zhangmaster12

    zhangmaster12 What's a Dremel?

    Joined:
    11 Jun 2006
    Posts:
    874
    Likes Received:
    0
    hey anybody got a sketchup of a lian li PC-G7?
     
  3. icutebluezone

    icutebluezone The meaning of life is to MOD

    Joined:
    6 Aug 2007
    Posts:
    1,326
    Likes Received:
    19
    Hi anyone got a sketchup of the Lian Li PC-V1000 ? I have looked on net and found 1 but is not even 1/2 made. and 1 got a finished model? Thanks
     
  4. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
  5. FrooP

    FrooP can I eat this?

    Joined:
    24 Oct 2007
    Posts:
    278
    Likes Received:
    7
    ooooooooooh shiny

    /me likes
     
  6. Aterius Gmork

    Aterius Gmork smell the ashes

    Joined:
    25 Sep 2007
    Posts:
    1,823
    Likes Received:
    73
    I'd really keep the 2 columns layout as it is now. While it looks fine at the memory category at the water cooling category one really would have to scroll.. a lot.

    But apart from that it really looks cool as it is now.
     
  7. b4i7

    b4i7 modding dreams into reality

    Joined:
    7 Apr 2007
    Posts:
    101
    Likes Received:
    0
    lookin great! one thing i noticed...the menus do not collapse back down after clicked open
     
  8. sheninat0r

    sheninat0r What's a Dremel?

    Joined:
    28 May 2007
    Posts:
    696
    Likes Received:
    7
    I agree - save the space, save everyone some scrolling trouble :clap:
     
  9. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
    I agree on the columns issue, but it's remarkably difficult to do anything about without resorting to a table for layout.
    If anyone can suggest a good way of doing it with CSS then please do let me know.

    Making the menus collapse back down will come in time.
     
  10. ComputerKing

    ComputerKing <img src="http://forums.bit-tech.net/images/smilie

    Joined:
    8 Sep 2006
    Posts:
    4,200
    Likes Received:
    36
    I will keep my eye on this thread but dam I will have to check 100 page , GRRRRRR
     
  11. Aterius Gmork

    Aterius Gmork smell the ashes

    Joined:
    25 Sep 2007
    Posts:
    1,823
    Likes Received:
    73
    What's the problem with good old collumns? <tr><td> Cheesecake.
     
  12. GuardianStorm

    GuardianStorm Minimodder

    Joined:
    26 Apr 2005
    Posts:
    1,475
    Likes Received:
    1
    You could do it with a styled (block display) list, with the div's inside it set to 50% parent width i think
     
  13. Dark~3nergy

    Dark~3nergy what was dat sandvich ?

    Joined:
    14 Jan 2007
    Posts:
    1,424
    Likes Received:
    45
    the new version looks realy nice !
    I realy like the yellow color.
    Maybe you should use pages with like 10 items on each page instead of having more columns?
     
  14. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
    I'm not going to use tables, they're for tabular data, a list of items is not tabular data.

    50% width would seem the right way, but it seems more complex than that as the height can't easily be set.

    Pagination is also a possibility but I'm not convinced that there are enough items to warrant that in most categories.
     
  15. GuardianStorm

    GuardianStorm Minimodder

    Joined:
    26 Apr 2005
    Posts:
    1,475
    Likes Received:
    1
    I was bored at work:

    HTML:
    Code:
    <html>
    	<head>
    		<title>jQuery Testing</title>
    		
    		<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
    
    	</head>
    	<body>
    
    		<div id="itemContainer">
    			<ul id="itemList">
    				<li class="item"> ## Item code in here ## </li>
    				<li class="item"> ## Item code in here ## </li>
    				<li class="item"> ## Item code in here ## </li>
    				<li class="item"> ## Item code in here ## </li>
    				<li class="item"> ## Item code in here ## </li>
    				<li class="item"> ## Item code in here ## </li>
    			</ul>
    		</div>
    	</body>
    </html>
    
    CSS:
    Code:
    body {
    	margin: 0px;
    	padding: 0px;
    }
    
    #itemContainer {
    	margin-left: auto;
    	margin-right: auto;
    	width: 80%;
    
    }
    
    #itemList {
    	list-style: none;
    }
    
    .item {
    	display: inline;
    	float:right;
    	width: 49%;
    	height: 150px;
    	border: 1px solid black;
    }
    
    solves the height, width and all :) hope that helps :)
     
  16. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
    no, that's my point, I can't really use a set height, as that won't be enough for some items, and too much for others, and that in turn causes issue like this:
    [​IMG]

    i.e. the gaps as you can see top left and at the bottom.

    I can add code to add a break after every other item, but that adds a large gap after the first two items, and it's all getting too messy.
     
    Last edited: 31 Jul 2008
  17. GuardianStorm

    GuardianStorm Minimodder

    Joined:
    26 Apr 2005
    Posts:
    1,475
    Likes Received:
    1
    ahh i see what you mean. I will have a ponder while 'working' :)
     
  18. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
    it's a fiddly one.
     
  19. Deceiver

    Deceiver What's a Dremel?

    Joined:
    2 Aug 2008
    Posts:
    2
    Likes Received:
    0
    Hi, I am really new to this and been having a hard time on how to put holes for fan installation on the panel. Can anyone help give me a short tutorial or point me where I can learn how to do this?
    Thanks in advance!
     
  20. jezmck

    jezmck Minimodder

    Joined:
    25 Sep 2003
    Posts:
    4,456
    Likes Received:
    36
    Hi Deceiver, welcome to bit-tech.net!

    Cutting a hole should be fairly easy: use the circle tool to draw the hole on the surface, then use the push-pull tool to push through the panel, when you let go of the mouse it should cut the hole through the panel.
    Do go through the tutorials in SketchUp, they really do help.
     

Share This Page