Login
Register
Questions
Unanswered
Tags
Users
Ask a Question
Tips
Sawtooth Software Home
Most popular tags
cbc
lighthouse-9
ssi-web
ssi-web-8
maxdiff
acbc
cbc-hb
javascript
grid-question
constructed-list
ssi-web-7
free-format
unverified-perl
skip-logic
alternative-specific-design
latent-class
acbc-summed-price
select-question
smrt
mbc
quota-control
willingness-to-pay
choice-simulator
attribute-interactions
conditional-pricing
Have an idea?
Visit
Sawtooth Software Feedback
to share your ideas on how we can improve our products.
Boxes around concepts - Shelf-Facing Display
Hi, I have a shelf-facing display with 2 shelves and 3 concepts on each shelf. My concepts are all 3 lines of text. Is there a way to build boxes around each concept? I've removed the default boxes and shadows.
Thanks,
Lisa
asked
Feb 15, 2018
by
LisaMarin
Bronze
(
550
points)
Your comment on this question:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
[captcha placeholder]
To avoid this verification in future, please
log in
or
register
.
Your solution to the original question
Please only use this to answer the original question. Otherwise please use comments.
Your name to display (optional):
Email me at this address if my answer is selected or commented on:
Email me if my answer is selected or commented on
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please
log in
or
register
.
1 Answer
0
votes
Hi Lisa,
You can make use of css to achieve this. Here is the code you can use in header 1 ::
<style>
.inner_table>tbody>tr:nth-child(1)>td {
border: 1px solid black;
}
.inner_table>tbody>tr:nth-child(1)>td {
padding: 10px !important;
}
</style>
Best
TK
answered
Feb 20, 2018
by
TarunKhanna
Bronze
(
830
points)
Your comment on this answer:
Your name to display (optional):
Email me at this address if a comment is added after mine:
Email me if a comment is added after mine
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
[captcha placeholder]
To avoid this verification in future, please
log in
or
register
.
...