No content to show
User Activity
Hi there, To fix the overflowing issue, you can use the below CSS:@media (max-width:768px) {
body {
overflow-x: hidden !important;
}
}Adding the above at the end of your theme.css file should be working as expected. Cheers!
Yes, you can shorten the titles, or seek for a developer for a custom solution. Assuming the question has been answered, it would be great if you can mark this as the solution.
Hi, You can achieve a 2 column layout on mobile phones by using the following CSS code:@media (max-width:768px) {
ul.grid.product-grid.grid--4-col-desktop.grid--2-col-tablet-down {
display: block;
}
li.grid__item {
width: 50% !important;
float:...
Hey, It seems that this ticket is still marked as unsolved, have you managed to fix the issue?
06-09-2024
Hi, You can change the menu font size in Pipeline theme by using a similar CSS to the below:@media (max-width:768px) {
.header__wrapper nav a, .header__wrapper nav span {
font-size: 20px !important;
}
}Adding the above at the end of your theme.css ...
You can center the image along with the buttons by using the following CSS:@media (min-width:768px) {
.section-template--19454625448201__image_with_text_gqapcM-padding .image-with-text__grid {
display: block;
}
.section-template--19454625448201__im...
05-08-2024
You are currently having a style within your custom.css file that overwrites the button color. To change the submit color, you can use the below CSS:.product-form__submit {
background-color: #00306c !important;
}
Well, as I've stated above, I'd need to see the website.
05-08-2024
Hello, Can you share your website link? A possible fix could be the below CSS:form button {
background:black !important;
}You can test by adding it at the end of your base.css or main.css file. For a more exact answer, I'd need to see the website. Ch...
Hello, Centering an image is pretty straight forward, and can be done with a similar CSS:@media (min-width:768px) {
img {
margin: 0 auto;
}
} The above code would affect all images on your website - you will want it adjusted to target only that image...
Hi, You can achieve this by adding the below CSS at the end of your theme.css file..boost-sd__product-image-wrapper {
aspect-ratio: 1 !important;
} Cheers!
05-04-2024
Not possible through CSS, you'd need HTML adjustments too.
05-04-2024
Hi there, You can change the first letter in a word by using the below CSS:.newsletter h2::first-letter {
color: red;
}Adding the CSS at the end of your base.css file should render as the following screenshot. I couldn't find the 'F' in the body s...
05-01-2024
Sorry, I can't further assist without knowing more information. The code that I've provided is working on the theme that you've indicated, but without knowing the website I can't have an exact answer.
Hello, Some themes are using base.css instead of theme.css file. Assuming that the CSS you've provided is correct, adding it at the end of your base.css file should be working as expected. Please note that your provided code is intended to hide an el...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
352 | 08-01-2024 06:31 AM | |
589 | 05-08-2024 02:44 PM | |
649 | 05-08-2024 02:16 PM | |
229 | 05-08-2024 12:51 PM | |
374 | 05-01-2024 05:26 AM |