Homepage › Forums › Free Support Forum › BoldR Lite › BoldR Lite Support › display issue
- This topic has 3 replies, 2 voices, and was last updated 8 months, 3 weeks ago by
iceable.
-
AuthorPosts
-
January 2, 2023 at 12:16 am #25682
Hello,
I use your theme which I find really nice but I encounter some problems
On Smartphone in portrait format, there are side margins: is it possible to remove them to have the site in full screen (as in landscape format)?
portrait
landscapeIs it also possible to display the slogan under the title (as usual)?
Thank you.
January 2, 2023 at 5:43 pm #25685iceableJanuary 2, 2023 at 5:43 pmReply to: display issueiceable
KeymasterSupportHappy with my help?
Buy me a beer!Hello,
The mobile layout of this theme is breakpoint-based : it has a fixed width of
– 300px for screens smaller than 480px
– 420px for screens up to 767px
– 768px for screens up to 959px
– 1000px for any screen larger than that (including desktop)
The margins on each side therefore depends on the size of the device and how close it is to one of these breakpoints.
Converting it to a “fluid” layout which adapts more closely to the device’s screen size is possible, but I’m afraid this would involve quite a bit of work since many elements of the theme have some fixed sizes for each breakpoint.Moving the slogan from the right to under the title however should be easier. Add the following to Appearance > Customize > Additional CSS and it should do the trick:
#tagline { float: none; clear: left; padding-top: 0; } #logo { padding-bottom: 0; }
January 3, 2023 at 12:21 am #25686Hello,
Thank you for your quick response. It’s nickel for the slogan.
Regarding the rendering on smartphone, the presence of margins for small widths makes the display of the site very narrow. If I can give my opinion, for small widths, it would have been more beautiful without margin: what do you think?Last little thing: in the articles, I don’t want to see the date of creation and the author appear: so I added this code
.post-category, .postmetadata span { display: none; }
But the margin corresponding to the location of these blocks is still there… Is it possible to remove it?
Thanks again.January 3, 2023 at 5:44 pm #25689iceableJanuary 3, 2023 at 5:44 pmReply to: display issueiceable
KeymasterSupportHappy with my help?
Buy me a beer!Sure, this should do:
.postmetadata { display: none; } .post-contents, .single-post .post-contents { margin-left: 0; width: 100%; } .single-post .thumbnail { max-width: 100%; }
-
AuthorPosts
- The topic ‘display issue’ is closed to new replies.