Skip Navigation

[Resolved] style cells in respect to breakingpoints

This support ticket is created 5 years, 9 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 12:00 – 17:00 -
- 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 18:00 – 21:00 -

Supporter timezone: Asia/Karachi (GMT+05:00)

This topic contains 1 reply, has 2 voices.

Last updated by Noman 5 years, 9 months ago.

Assisted by: Noman.

Author
Posts
#615835
pic1.PNG

Hi,
The site is live at hidden link

1. On tablet breakingpoint , a weird thing happens to the text. img1. maybe the cell width is too small?
2. For mobile, i would like to make the font smaller and centered. And center the logo from the left cell as well. How can i do that?

Thanks
Mircea

#615931

Noman
Supporter

Languages: English (English )

Timezone: Asia/Karachi (GMT+05:00)

DIAMEDIX – Romania.png

Hello Mircea,

Thank you for contacting Toolset support.

>> 1. On tablet breakingpoint , a weird thing happens to the text. img1. maybe the cell width is too small?
Yes, cell width is too small. They are using col-sm-XX classes. We can use col-md-XX to fix this issue.

>> 2. For mobile, i would like to make the font smaller and centered. And center the logo from the left cell as well. How can i do that?
You can achieve it using following CSS in your theme’s style.css file or custom CSS file.

@media(max-width:768px) {
.header-top > div img,
.main-footer > div img {
    margin: auto auto 30px;
}

.js-wpv-view-layout article {
    text-align: center;
}

.header-top p,
.main-footer p {
    font-size: 14px;
    text-align: center !important;
}
}

And it will look as in attached screenshot.

Thank you

This ticket is now closed. If you're a WPML client and need related help, please open a new support ticket.