itonic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Head Blog] Blog posts layout options and Author in CAPITALSHi,
maybe someone can come up with a solution, but I guess it is not so easy to do.
You most likely have to change the theme directly. This will cause trouble with updates etc. (possible work around would be a child theme, still the same problem if you don’t know what you are doing).If you have to stick to Head blog and really need the 2 column content area, I’d ask the makers if they could implement this. They made a premium plugin for things like this, lifetime license is only 59,-. Maybe they consider your request for the next update.
You could also look for theme customisation on fiverr, where you can find that for cheap. However IMO it is better on the long run to switch to a pro-theme which offers what you seek if the head team won’t change the theme for you. Have a look around themeforest.net f.e..
Just a few thoughts 🙂
RegardsForum: Themes and Templates
In reply to: [Head Blog] Blog posts layout options and Author in CAPITALSForum: Themes and Templates
In reply to: [Head Blog] Header heightSet the .site-header to the desired height via custom css.
.site-header {min-height:250px}- This reply was modified 7 years, 5 months ago by itonic.
Forum: Themes and Templates
In reply to: [Head Blog] Hide header image on mobile devices?You bet!
Let everyone know if you come up with a solution for the home page. Might be useful to somebody.
Regards from Austria.Forum: Themes and Templates
In reply to: [Head Blog] Hide header image on mobile devices?It’s better to make the changes in Customizer via custom CSS.
That should work:@media only screen and (max-width: 768px) {.site-header { display: none !important; } }Alternatively you can change to:
@media only screen and (max-width: 768px) {.container-fluid { display: none !important; } }Both should work.
Forum: Themes and Templates
In reply to: [Head Blog] Change the size of the nav barMaybe you don’t need it anymore, but in case you still do, this could get you started:
Put this in the custom css section#site-navigation { min-height: 120px;} .navbar-nav > li > a { padding-top: 50px; padding-bottom: 20px;}You have to play with the height and padding settings.
Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?You’re welcome.
Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?The aforementioned
a, a:active, a:hover, a:focus {color: #000;}changes the ‘read more’ button and a few other links as well. Try if it works out for you.Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?body {color: #888F41;}
this, for example, sets the base color for the whole site-body to some green hue.
Wherever there are other colors for specific text elements you need to check them out as described.I don’t get how you have a gold color in your blog, without changing the theme in one way. Mine has dark gray color #404040 by default, same as the Head Blog demo…so how did you end up with that tone?
Forum: Themes and Templates
In reply to: [Head Blog] Changing text coloursMaybe I answered your question in your other thread in reply 6:
https://wordpress.org/support/topic/do-post-titles-have-to-be-centred/Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?You’re welcome.
I didn’t look in the documentation.
I’m on firefox and there you have the web developer tools with a tool called inspector and an element inspection tool (called node picker) with which you can point to any element of a site and it shows you the corresponding code, html, css, …
https://developer.mozilla.org/en-US/docs/Tools/Tools_ToolboxIt’s really handy to figure things like this out.
I just saw your other thread about the colours. With help of the mentioned tools you might just discover out what classes you need to change.
For instance if you want to change the colour of all links on the site to black add this to the custom css:
a, a:active, a:hover, a:focus {color: #000;}Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?Me again,
had a look at the Head Blog Demo. https://headthemes.com/head-blog-demo/
The images there have the class “news-thumb”…try that.
.news-thumb { text-align: left;}Let me know if it worked.
Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?I don’t use features images on my site, so I can not try it.
Like I said, figure out the corresponding css via the webtools of your browser.Maybe you’re completely new to all this and don’t know what I’m talking about.
In that case, provide a link to your site and I can have a look and see if I can find the right class…no promise… 🙂Forum: Themes and Templates
In reply to: [Head Blog] Do post titles have to be centred?Hi there,
if it’s the same as in the archive page, where I did that, then you have to put the following css in the custom css section:
.news-item-content {text-align: left;}If it is not a newsitem you’re trying to realign, then check what it’s called in the inspector or a similar broswertool and do the same thing.
Hope that helps.Forum: Themes and Templates
In reply to: [Head Blog] Strange font looks in ChromeAnyone?