Archived topic
Settings for responsive Layout
1 reply · Started by Anonymous on April 1, 2015
Hallo dear GeneratePress Team,
I build a homepage with the Generate Press Theme. After that I have seen the homepage on my tablet and I wasn't satisfied. Can I customize the responsive-look of the theme?
If yes... where can I find the settings?
Do you have any suggestions?
Here is the website: http://helmstedter-sonntag.de/cms2/
Thank you very much
for your efforts.
Hi there,
So sorry for not getting back to you sooner! I have no idea how I missed this thread.
Are you still needing help with this?
You can always use media queries in your CSS to tweak things for different screen sizes.
For example, if I want to reduce the size of my site title on mobile, I can do this:
@media (max-width:768px) {
.main-title {
font-size: 20px;
}
}
Sorry again!