Login or Sign Up
Logging in...
Remember me
Log in
Forgot password or user name?
or
Sign Up
Log in with
Search in titles only
Search in Layout Adjustments & Changes only
Search
Advanced Search
Forums
Today's Posts
New Topics
FAQs
Knowledge Base
Sellerdeck website
Customer Portal
Service Status
Member List
Forum
Setting Up Sellerdeck
Layout Adjustments & Changes
Announcement
Collapse
No announcement yet.
CSS query:
Collapse
X
Collapse
Posts
Latest Activity
Search
Page
of
1
Filter
Time
All Time
Today
Last Week
Last Month
Show
All
Discussions only
Photos only
Videos only
Links only
Polls only
Events only
Filtered by:
Clear All
new posts
Previous
template
Next
officeidiot
Registered User
Join Date:
Aug 2007
Posts:
5
#1
CSS query:
20-Aug-2007, 01:12 PM
If you have a 'div' and want to place 4 links in it as if they were in cells (for exmple like in excel: 2 on top and 2 on bottom row). How can you achieve this??
leehack
Moderator
Join Date:
Nov 2005
Posts:
15198
#2
20-Aug-2007, 01:21 PM
There is about 10 ways to do it, i would do something like this to keep it easy:
<div id="linksContainer">
<a href="blah.htm">Blah</a>
<a href="blah.htm">Blah</a>
<a href="blah.htm">Blah</a>
<a href="blah.htm">Blah</a>
</div>
and have the following in your stylesheet
#linksContainer a {
float: left;
display: block;
width: 50%;
}
Don't use an ID if not unique area on the page, you should use a class in that case instead.
Website Designed Tamworth, Staffordshire
-
SellerDeck Templates
&
SellerDeck Tutorials
Comment
Post
Cancel
jont
Registered User
Join Date:
Jan 2005
Posts:
11094
#3
20-Aug-2007, 05:28 PM
You may need to specifically declare the width of the #linksContainer as well to ensure it fits with your design.
Bikster
SellerDeck Designs and Responsive Themes
Comment
Post
Cancel
officeidiot
Registered User
Join Date:
Aug 2007
Posts:
5
#4
21-Aug-2007, 08:20 AM
Thanks for that. Very helpful!!
Comment
Post
Cancel
Previous
template
Next
Working...
Yes
No
OK
OK
Cancel
X
Comment