Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MH Purity lite] How ro reduce the height of the headerTo what? 🙂
What would you like it reducing to?
Nothing?
half?
Something more specific?
You could target the header-wrap class, or you could remove some of the padding that added to the top and bottom of the logo-wrap. Example of the latter because I think it might this you want:
.logo-wrap{padding:5px 0 5px;}Take care.
Forum: Themes and Templates
In reply to: [Exclusive] Fatal Error MenuHey there,
The error is telling you need more memory, the more code you use, the more the site is loaded, the more php is processed and the more memory you need.
Adding plugins and themes push up the requirement for memory.
You could do one of the following like edit your php.ini file or add your own (depending on setup):
memory_limit = 256Mhttaccess:
php_value memory_limit 256MThere is WordPress constant you can try:
define('WP_MEMORY_LIMIT', '256MB');You would change the memory in those to whatever it is you require. 256M was simply an arbitrary number.
If you are not sure how, if this doesn’t work, or have further issues then it would be best to ask your host to help you out with this one, they might be able to see something else occurring.
Take care.
Forum: Themes and Templates
In reply to: TwentyFourteen tagline color changeExcellent, glad I could help! 🙂
Forum: Themes and Templates
In reply to: [Clean Black] How to hide author and date from post.Hey there,
You would either need to edit the code directly to remove the PHP or you could hide it with some CSS:
.dateview{display:none;}There is a parent container with a class of mediumfont but this is also used on the 404 page so I didn’t target it.
If you wish to create a child theme and remove the PHP so it doesn’t load at all then there are 3 files:
content-single.php
<?php if(is_single()) { ?> <div class="mediumfont"> <div class="dateview"> Written by <a rel="author" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author() ?></a> on <?php the_time('F j, Y'); ?> <?php edit_post_link( __( 'Edit', 'cleanblack' ), '<span class="edit-link">(', ')</span>' ); ?></div></div><div style="clear:both;"></div><?php } ?>image.php
<div class="mediumfont"><div class="dateview">Uploaded by <a rel="author" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author() ?></a> <?php edit_post_link( __( 'Edit', 'cleanblack' ), '<span class="edit-link">', '</span>' ); ?></div></div><div style="clear:both;"></div>loop.php
<div class="mediumfont"><div class="dateview">Written by <a rel="author" href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author() ?></a> on <?php the_time('F j, Y'); ?></div><div style="clear:both;"></div></div>Hope this helps.
Take care.
Hey there,
You would need to adjust the CSS once the sidebar is removed so that the content will spread out.
As it’s the Pro version you would need to chat with the author of the theme, unfortunately as per the forum rules we can’t assist with commercial items here, sorry.
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Take care.
Forum: Themes and Templates
In reply to: WHITE SCREEN – CAN NOT LOG INHey there,
The best thing to do would be to use FTP or your cPanel file manager and then go and upload a new nav.php that you haven’t broken 🙂
To see what’s causing the error you can use WP_DEBUG. To output the WordPress debugging information you can open your wp-config.php file and change:
define('WP_DEBUG', false);To:
define('WP_DEBUG', true);You can also have these errors output to a debug.log file located in your /wp-content/ folder, to do this add the following to your wp-config.php file:
define('WP_DEBUG_LOG', true);Using WP_DEBUG would put the errors on the site, you can hide those and just have them out put the WP_DEBUG_LOG (if set to true) by using this as well:
define('WP_DEBUG_DISPLAY', false);Let me know how you get on.
Take care.
Forum: Themes and Templates
In reply to: [Theme: EvoLve] Reduce the top marginHey there,
I don’t see that on the demo site here:
http://ww.wp.xz.cn/themes/evolve
Please provide a link to where you see this happening on your site.
Cheers.
Hey there,
If you’re talking about the main content area then this should do it:
body, #body-core { background: #87c540; }If not then perhaps include a screenshot of the exact location you refer too.
For the teaser text you can target the title and the text like this:
.action-teaser h3{color:#fff;} .action-teaser p {color:#fff;}For a list of hex codes try here:
Hope this helps 🙂
Take care.
Forum: Themes and Templates
In reply to: [Independent Publisher] Too much white space in header areaHey there,
That Home text can be edited like this:
.page h1.entry-title { font-size: 3.5em; }That’s the original size set by your theme. You could use em, px or a percentage.
For the margin under the menu it seems like you have a widget area or something there, you can remove the margin with this CSS:
.shailan-dropdown-menu-widget{margin:0;}Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: Dedicated Post Page Not there?Hey there,
How do you mean there is no dedicated blog page?
You mean like an archive?
If so this appears to be it:
http://www.claytree.org/the-blog/
Or should we be seeing more content on the article itself?
Or are you talking about the slugs there?
If you could offer some further clarification I’ll do my best to try and help 🙂
Take care.
Forum: Themes and Templates
In reply to: [Split Me] How to remove byline from Pages?Hey there,
You didn’t share any of your CSS so I couldn’t offer any pointers on your attempts. This CSS should do it though:
.page .entry-footer {display:none;}This simply hides it so it’s not visible.
To totally remove it you could of course us a child theme and edit out that information, it’s most likely on the page.php file.
Take care.
Forum: Themes and Templates
In reply to: [Writr] How to change default font menu ?Hey there,
You didn’t provide a link or any example of what you were referring to so I’m kind of stabbing in the dark here.
You could target the list item directly like:
ul li { }With your CSS in there of course. That will affect all unordered list items on your site. You could get more specific and target through the container.
Take care.
Forum: Themes and Templates
In reply to: TwentyFourteen tagline color changeHey there,
Something like this should work:
.site-description{color:#fff;}You can find all hex codes here:
If this doesn’t work then it’s possible that the CSS is not being called late enough in the load sequence, you see the last CSS called is the one that takes priority unless of course !important is being used.
Let me see a link to your site where you used this CSS if it’s not working.
Take care.
Forum: Themes and Templates
In reply to: [Fruitful] Remove text wrapHey there,
It’s possibly a float, hard to know for sure without seeing your site so can you please link direct to the page this happens on?
Cheers.
Forum: Fixing WordPress
In reply to: How do I make a dynamic ad?Hey there,
Yes it’s possible, you can either code it up yourself or you could use a plugin. Here are some options:
https://ww.wp.xz.cn/plugins/random-banner/
https://ww.wp.xz.cn/plugins/wp-bannerize/
https://ww.wp.xz.cn/plugins/useful-banner-manager/
https://ww.wp.xz.cn/plugins/wp-banner/
A commercial one which is more like an ad publisher for your site which I’ve used before and always liked is this one:
Hopefully you’ll find one of those to your needs.
Have a great day! 🙂