Rowling theme akward epmty space in "about" tab
-
For some reason in the “about” tab (or “sobre” because it’s in portuguese),
Is an empty space between where the alignment with the title was supposed to be, and the text itself, I’ve checked multiple times in the editing area and i couldn’t found anythng to remove that. What can I do?The blog I need help with is: (visible only to logged in users)
-
Hi,
I think what you’ve referred to is just the normal static page left margin on the Rowling theme. Compare, for example, your page “Sobre” to the pages “A Parent Page” and “Readability” in the Rowling demo. The Rowling theme has no page template options, so to change this behavior would require CSS customization. With custom CSS, I believe you’d be able to move either the title or the content, or both, left or right to achieve the alignment agreement you’d prefer.
-
Hey @apoloesportsworld!
I wanted to pop in and confirm what @musicdoc1 has suggested. What you’re seeing (empty space to the left of the page content) is part of Rowling’s design.
It is possible alter this with some Custom CSS on a Premium Plan or Business Plan.
With access to your site’s CSS, there are two main ways to approach this kind of change.
First, you could allow the content to fill the available space:
.single-post .post-inner { width: 100%; }Or, the second option (these are separate, not in combination) would be to leave the current width as it is, and center it:
.single-post .post-inner { margin: 0 auto; float: none }
- The topic ‘Rowling theme akward epmty space in "about" tab’ is closed to new replies.