- This topic has 3 replies, 2 voices, and was last updated 2 weeks, 4 days ago by
vako.
-
AuthorPosts
-
June 22, 2025 at 12:35 pm #77142
Dear WP Royal Support Team,
First of all, thank you for your work on the Ashe Pro theme – I appreciate its lightweight design and modern layout.
However, I’m facing two customization issues that are quite relevant to my site setup, and I would appreciate your advice or a possible solution:
1. Top Bar Customization
I would like to display the “Site Title” and “Tagline” from the “Site Identity” settings in the top bar. Unfortunately, it appears that only the menu and social icons are available for placement in that area. Is there a way to include the Site Title and Tagline dynamically through the customizer?2. Heading Spacing and Typography
I have published around 100 blog posts, with headings structured correctly using H1, H2, and H3 tags. In Ashe Pro, the spacing above these headings is visually too tight – they appear almost attached to the previous section, which reduces readability.
I noticed that the theme typography settings do not allow me to configure individual styles (e.g., margin-top or font-size) for each heading level. As I’m not experienced with CSS, I’m unable to adjust this manually.Could you please advise if there is a way to control heading spacing via the GUI or suggest a supported method to apply consistent spacing and font sizing for H1–H3 elements?
Thank you very much in advance for your support. I look forward to your response.
Best regards,
Oliver
-
This topic was modified 3 weeks ago by
Oliver Mueller.
June 23, 2025 at 8:51 pm #77146Dear Oliver,
Thank you for your kind words and for using the Ashe Pro theme — we’re glad to hear you appreciate its design and performance.
We appreciate you reaching out with your questions. Please find our guidance below for both of your concerns:
1. Top Bar Customization (Site Title & Tagline)
At the moment, the top bar in Ashe Pro is designed to display only the menu and social icons. Adding the Site Title and Tagline dynamically in this area would require custom development work, including template editing and use of a child theme to ensure changes are update-safe.
As this type of modification involves custom coding, it falls outside the scope of our support policy. We recommend hiring a qualified developer who can assist you with implementing this feature.
2. Heading Spacing and Typography (H1–H3)
You’re absolutely right — while Ashe Pro allows general typography customization, it doesn’t provide per-heading-level controls for spacing or font sizing via the Customizer.
However, we’d be happy to provide a CSS snippet that you can add to improve the spacing above your headings. Please follow the steps below:
To apply custom spacing for H1, H2, and H3 elements:
Go to your Dashboard
Navigate to Appearance > Customize > Additional CSS
Paste the following snippet:
h1 {
margin-top: 40px;
margin-bottom: 20px;
font-size: 2.5em;
}
h2 {
margin-top: 35px;
margin-bottom: 18px;
font-size: 2em;
}
h3 {
margin-top: 30px;
margin-bottom: 16px;
font-size: 1.75em;
}
Feel free to adjust the margin-top, margin-bottom, or font-size values to suit your preferences and layout.
We hope this helps improve your site’s readability and design. Please don’t hesitate to reach out if you need help applying the CSS snippet or have any other questions!
Best regards
June 24, 2025 at 2:45 pm #77150Great, thanks a lot. That should get me going.
June 25, 2025 at 1:45 am #77153You are most welcome!
Feel free to contact us at any time, and we appreciate your continued trust in our services.
Kind Regards
-
This topic was modified 3 weeks ago by
-
AuthorPosts
- You must be logged in to reply to this topic.