- This topic has 5 replies, 2 voices, and was last updated 6 years ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › Posts do now show title when published
I have titles when I create posts, but when they are pusblished they are not shown. An example: http://www.ilovecoffeesomuch.com/category/blog/
What should I change?
The Titles are showing up, but you’re unable to see them because you have a lot of links in your menu. The menu is pushed down further than normal and covers the title. You can either reduce the size of the menu, or increase the margin-top
for the .site-inner
so the content starts further down below where the menu is located.
Here’s what it looks like at the moment – http://i.imgur.com/ej2pXxD.png
And here’s what it looks like if you change the .site-inner
from margin-top: 170px;
to – margin-top: 300px;
or more – http://i.imgur.com/4WQCrzz.png
Hi Wes,
I am trying to change this in Aspire Pro: Stylesheet (style.css), but where ever I change it, I do not see a difference.
Where exactly do I need it to change it?
You’re using a CSS minifier plugin so I can’t tell exactly which line it’s coming from since the CSS is all mixed in together. If you temporarily deactivate the CSS minifier plugin then I can tell you the exact line you’ll need to adjust.
Other than that, if you search for this in your style.css file, you’ll see the part you’ll need to change –
.site-inner {
background-color: #fff;
clear: both;
margin-top: 170px;
position: relative;
z-index: 9;
-word-wrap: break-word;
}
You can also add in your own Custom CSS inside the Customizer page (use the Additional CSS tab/page) and add this –
.site-inner {
margin-top: 300px;
}
When you add in the code, make sure and click your Reload button on your Browser so it instantly clears your Browser Cache….which means you’ll see the latest changes to your CSS file show up immediately.
Let me know if that helps or if you need assistance.
It worked under Customizer.
Thx.
You’re Welcome!