Solved

Bullet Point list in wrapper not alligning text properly

MDKSocks
Pathfinder
140 1 22

Dear community,

I am stuggling with something that should be very simple to fix in my opinion, I am not the best in CSS tho! I want my text to be alligned like it normally is when you use a bullet list in word etc. But somehow the wrapper screws it up. List-style is set on inside because otherwise the points would be on the edge of the wrapper and it looks even worse. (list-style: inside)

How do I get is as below in the image, so I have my text alligned and the bulletpoints are still in the wrapper. I think it should be very simple but all the solutions I find are not working for me. The website is mdksocks.nl

Bullet list.jpg

 Bullet list.jpg

Go sock yourself! -- https://mdksocks.nl
Accepted Solution (1)
suyash1
Shopify Partner
9134 1137 1485

This is an accepted solution.

@MDKSocks - please add following css to the end of theme.scss and check , I see like in screenshot

.smart-tabs-content-wrapper li {list-style: outside;    margin-left: 1em;}

suyash1_0-1617201550547.png

 

To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session

View solution in original post

Replies 15 (15)

suyash1
Shopify Partner
9134 1137 1485

@MDKSocks - I see like this

suyash1_0-1617116954401.png

 

To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session
suyash1
Shopify Partner
9134 1137 1485

@MDKSocks - add this 

.smart-tabs-content-block {border: none;}

.smart-tabs-navigation-li, .smart-tabs-navigation-li:active {border: none;}
To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session
MDKSocks
Pathfinder
140 1 22

Sorry guys. I didnt copy the border in the example. It is about the text alligment and not the border, I am sorry! The border obviously needs to stay, the text needs to be better aligned!

Go sock yourself! -- https://mdksocks.nl
MDKSocks
Pathfinder
140 1 22

Bullet list.jpg

Like this @suyash1 @UmairA 

Go sock yourself! -- https://mdksocks.nl
MDKSocks
Pathfinder
140 1 22

You are not gonna tell me there is no way to fix this?

Go sock yourself! -- https://mdksocks.nl
suyash1
Shopify Partner
9134 1137 1485

This is an accepted solution.

@MDKSocks - please add following css to the end of theme.scss and check , I see like in screenshot

.smart-tabs-content-wrapper li {list-style: outside;    margin-left: 1em;}

suyash1_0-1617201550547.png

 

To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session
MDKSocks
Pathfinder
140 1 22

@suyu Thank you you absolute legend!!! What do you think about my website? Do you think it looks good?

Go sock yourself! -- https://mdksocks.nl
rob10k8
New Member
7 0 0

I'm trying the same thing, but I'm using an accordion and I cannot get the bullet points to indent correctly.

Here is how it currently look on my product page:

bullet.jpg

And here is how I want it to look:

bullet-corrrected.jpg

I am using out of the sandbox turbo, and I tried some of the solutions here but for an accordion, instead of a smart tab, but I can't get it to work.

Any help would be appreciated.

Thanks!

 

MDKSocks
Pathfinder
140 1 22

There solution from suyash1 worked for me!

Go sock yourself! -- https://mdksocks.nl
Samboi
Tourist
4 0 1

@suyash1 I noticed that you indicated to add this code to theme.scss. By chance, did you mean theme.css? I tried to add it to the end of theme.css and it is not working. Please advise if you have any further suggestions.

suyash1
Shopify Partner
9134 1137 1485

@Samboi - can you please share your website link?

To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session
rob10k8
New Member
7 0 0

If you have some time, can you take a look at www.nootkas.com?  Here's a page with the issue:

 

https://www.nootkas.com/collections/womens-slippers/products/womens-astoria-wool-house-slippers

 

Thanks!

 

 

 

suyash1
Shopify Partner
9134 1137 1485

@rob10k8 - please add following css to the end of your styles.css and check, should look like screenshot below 

,accordion li{text-indent: -20px;}

 

suyash1_0-1625889000128.png

suyash1_1-1625889006542.png

 

 

To build shopify pages use pagefly You are welcome to contact me - suyash.patankar@gmail.com , My timezone is GMT+5:30.
Paranormal story video using AI
Join me for beginner level training session
rob10k8
New Member
7 0 0

Perfect!

 

Thank you!!

 

UmairA
Shopify Partner
1106 101 225

Hey there @MDKSocks,

Add the following code to your theme.scss.liquid (or theme.css) file

#smart-tabs-content-0 {
border: none !important;
}

 

Hope it helps.