Archived topic
Clarify
1 reply · Started by Anonymous on August 17, 2015
I am using generatepress for my blog globalinfoonline.com. I have created a child theme to make few sizing alignments. Please clarify
1. If I resize my main content and sidebar width though css with the following code
.widget-area.grid-25 {
width: 35%;
}
.content-area.grid-75 {
width: 60%;
}
My blog looks fine. But site becomes mobile unfriendly. How to solve this issue.
2. Can I use jetpack mobile theme along with generatepress free theme. WIll it clash.
3. How do I remove the the footer content and use my own content without buying add ons.
regards
Hi there,
1. Try this:
@media (min-width: 769px) {
.widget-area.grid-25 {
width: 35%;
}
.content-area.grid-75 {
width: 60%;
}
}
2. Jetpack mobile theme conflicts with GP Premium (for now, update that fixes this is coming out very soon) - but will not conflict with the free theme.
3. This should do it: https://gist.github.com/generatepress/36c0c52479679252af28
Adding PHP: https://generatepress.com/knowledgebase/adding-php-functions/
Hope this helps :)
