i can’t go to the 5th block of my timeline section
URL: https://www.vibespearledcandle.com/
Topic summary
A user reported being unable to access the 5th block of their timeline section on their Shopify store. The issue appears to be screen-width dependent.
Root Cause Identified:
- A CSS rule in
theme.cssis causing the problem:.page-width { padding: 10px 25px!important; } - This rule overrides the theme’s expected maximum width of 1500px
- The bug only manifests on screens wider than approximately 1280px
- Narrower screens display the timeline correctly
Solution:
Removing the problematic CSS rule resolves the timeline navigation issue.
One respondent initially reported the site working normally, suggesting the issue may be intermittent or resolution-specific.
Hey @Emiway1 ,
I just visit your website and found that it’s working well.
Would you like to confirm either you fix it?
There is a lot of code which expect it’s width to be maximum 1500px.
However, there is a rule in your theme.css
.page-width {
padding: 10px 25px!important;
}
which overrides this.
If you remove it, the timeline works well.
And yes, on the narrower screens it works fine, problems start over 1280px wide, i guess.

