Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Minamaze] css stretch body to bottomSure, or something like this (maybe with an auto added in):
#body-core { min-height: 100%; }Glad you have it resolve 🙂
Take care.
Forum: Themes and Templates
In reply to: [Padhang] Delete dates and autorHey there,
You could hide it with this CSS:
.entry-meta{display:none}There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
There is another option which involves removing the original code, again this should be done in a child theme.
/padhand/content.php
/padhand/content-single.php
/padhand/content-search.php
/padhand/content-link.phpThese all appear to use the entry-meta class, they contain a function called padhang_posted_on(). You could simply remove those within your child theme. They look like this:
<div class="entry-meta"> <?php padhang_posted_on(); ?> </div><!-- .entry-meta -->Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Minamaze] css stretch body to bottomExcellent, thanks for letting me know! 🙂
Forum: Themes and Templates
In reply to: [Minamaze] css stretch body to bottomTry this:
html, body { height: 100%; } #body-core { height: 100%; }Hopefully that should sort it for you 🙂
Let me know.
Forum: Themes and Templates
In reply to: add a link in my footerHey there,
First off you should do this in a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/As it’s just links to your site I don’t think you need to worry about making them translatable unless you feel you’ll need to at some point?
So you could just do this:
<a href="LINK" title="TITLE OF LINK">LINK NAME</a>This is the basics of link. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Minamaze] css stretch body to bottomHey again,
You could probably use this CSS to make the body stretch:
body, html{ height: 100%; }Let me know if that works for you.
Take care.
Forum: Themes and Templates
In reply to: [Exclusive] Logo size on home pageA link to your site so I can see cropping please 🙂
Take care.
Hey there,
The CSS provided by Michelle was incorrect and didn’t target anything.
The image wasn’t added by CSS originally so you can’t just easily override it with another line CSS.
You could do something like this though:
@media screen and (max-width: 300px) { .themonic-logo a img { display:none } .themonic-logo { background: url(http://www.agenturjobs.de/wp-content/themes/iconic-one/img/Agenturjobs-logo-small.png) no-repeat; background-size: 300px; height: 27px; /* Height of new image */ } }You might like to reduce the height some.
You really should use a smaller image though if it’s only going to be one a small screen of 300px, currently the image is 649 x 97px and then downsized with CSS. If you make the image smaller in dimensions then it will be smaller in size (kb) too which will lead to a quicker load time.
Take care.
Forum: Themes and Templates
In reply to: [Hemingway] Centering Footer textHey there,
Footer B?
Do you mean the credits-left and credits-right?
I didn’t see a link to your site so I looked at the preview site, removing the floats so they’re on their own line and then centring the text should do it:
.credits-left, .credits-right { float: none; text-align:center;}Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [Hueman] changing font colour of side barsHey there,
I took a quick look at the theme, I guess you mean the colour like on the date or in the excerpt, the colour code is #aaa for the excerpt and there appears to be 12 instances of this in the theme.
The excerpt for example:
.entry.excerpt { color: #aaa; }The date is #bbb and there are 5 instances of this one:
.post-meta { color: #bbb; }This could be changed to any hex code you wish. If need a reference for codes:
Hope this gives you some direction on where to start. 🙂
Noticed your gravatar is a signpost for Worksop, small world, I’m not far from there. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Hannari] remove date and author from postsHey there,
You could add some CSS like:
.postedby, .date_time{ display:none; }Or to hide the whole area including those slashes:
.subinfopost{display:none;}Take care.
Forum: Themes and Templates
In reply to: How to change "leave a reply"?Hey there,
Translating WordPress is pretty easy:
http://codex.ww.wp.xz.cn/Translating_WordPress
Well translating plugins and themes are just as easy:
http://premium.wpmudev.org/blog/how-to-translate-a-wordpress-plugin/
http://premium.wpmudev.org/blog/how-to-translate-a-wordpress-theme/Usually you’ll find the original .po file within a /languages/ folder.
You’ll want to be looking at your themes files of the “leave a reply” text, unless you have a plugin doing something custom with comments.
Take care.
Forum: Themes and Templates
In reply to: [Vantage] Center Allign Nav-BarHey there,
Just took a look but looks like you’re sorted:
http://monosnap.com/image/qVboZAH95AarC6ajXku1tR9e039NxJ
Or did I miss something?
Take care.
Forum: Themes and Templates
In reply to: [Minamaze] css stretch body to bottomHey there,
What do you mean stretch it to the bottom?
I took a look at the demo site because you provided no link to your own site to see what’s happening. On the demo site it goes to the bottom of the browser.
I’d guess you need more content to push the footer down.
If you have a link then I should be able to see what’s happening for you.
Take care.
Hey there.
The date is controlled by your permalinks:
Admin –> Settings –> Permalinks
You can also read more here:
http://codex.ww.wp.xz.cn/Using_Permalinks
To remove the breadcrumb trail you can use this CSS:
.breadcrumb-trail{display:none;}If you want to remove the other published date within the article:
.published{display:none;}Keep in mind this will removed other items using the same CSS classes.
There is a chance that the theme has a CSS field in the options, if not then you can make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you can instead use a plugin if you like:
http://ww.wp.xz.cn/plugins/custom-css-manager-plugin/screenshots/
http://ww.wp.xz.cn/plugins/my-custom-css/screenshots/
http://ww.wp.xz.cn/plugins/pc-custom-css/
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂