Kye
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: maximum uploadHey there.
Does your host not permit you to change the upload size and processing time either through a custom php.ini or your .htaccess?
If they do you’d want to look at these for php.ini:
post_max_size = 256M upload_max_filesize = 256M max_execution_time = 360Or .htaccess:
php_value post_max_size 256M php_value upload_max_filesize 256M php_value max_execution_time 360Obviously using the size you wish or are permitted too. Increasing the execution time is so it doesn’t timeout on larger files.
If they don’t allow you to alter those locally then what about adding them to the Media Library through a plugin like this:
http://ww.wp.xz.cn/plugins/add-from-server/
Hope this helps.
Forum: Themes and Templates
In reply to: Help! – Custom header displays on desktop but not on mobileHey there.
I just checked your site and the image loaded in the #header just gives me a not found:
http://tosavealifecolorado.com/wp-content/uploads/2014/07/old-logo.jpg
The only one that works there is this:
http://tosavealifecolorado.com/wp-content/themes/outreach/images/header.png
Can you check the image exists, maybe upload again please. 🙂
Take care.
Forum: Themes and Templates
In reply to: Remove a Header barOhh, if you want to know more about !important and specificity then checkout this article:
http://www.smashingmagazine.com/2010/11/02/the-important-css-declaration-how-and-when-to-use-it/
🙂
Have a great day!
Forum: Themes and Templates
In reply to: Remove a Header barGlad that worked 🙂
Forum: Themes and Templates
In reply to: Remove a Header barNo, it’s the order in which the CSS is loaded that is the issue.
So the dark.css it wp_register_style later in the call sequence. This is why that takes priority. 🙂
Take care.
Forum: Themes and Templates
In reply to: Remove a Header barYour code is in style.css, but it seems that dark.css is being called later and so it takes priority.
/gamepress/style.css
/gamepress/css/dark.cssYou need to either load the CSS I gave you later, or you need to take it out of it’s order with !important as I mentioned in my last post. It’s best to avoid !important unless it’s a last resort.
Cheers.
Forum: Themes and Templates
In reply to: Virtue Theme: Cannot upload logoHey there.
Seems this wasn’t posted in the authors forums:
https://ww.wp.xz.cn/support/theme/virtue
So they might not see it.
Also, you didn’t mention if it was their free version or the premium one:
http://www.kadencethemes.com/product/virtue-premium-theme/
Has this never worked?
Have you checked for plugin conflicts? i.e. does it work with all plugins turned off?
Take care.
Forum: Themes and Templates
In reply to: Remove a Header barHey again.
Then it was probably placed too early in the load or you need to clear cache.
I checked here:
bionite.platoon-studios.com
See: http://monosnap.com/image/RkttSxDKCgbkBl9XX0wvPFwZCh6TJC
That’s a screenshot of it working on your site.
How was it loaded?
As a last resort you could try:
#header { background: none !important; }Cheers.
Forum: Themes and Templates
In reply to: Remove a Header barHey there.
Hope you are well 🙂
As per:
http://ww.wp.xz.cn/support/topic/add-support-topics-through-your-themes-extend-listing-page
You should post in the correct forum, this ensure the theme author doesn’t miss your thread. The theme has it’s forum here:
https://ww.wp.xz.cn/support/theme/gamepress
Anyway, are you talking about the huge grey background?
If so you can use this CSS:
#header { background: 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/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Water Lily] Borders in PagesHey there.
You could add this CSS:
.wp-caption { border: 0; }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! 🙂
Forum: Themes and Templates
In reply to: [WP-Creativix] posts not clickable in blogHey there.
Hope you’re well.
Looking at the code it seems that it will be in these files:
tpl_blog.php
change:
<img src="<?php echo $thumb;?>" />To:
<a href="<?php the_permalink();?>"> <img src="<?php echo $thumb;?>" /> </a>search.php
archive.phpchange:
change:
<img src="<?php echo $wpcx_thumb;?>" />To:
<a href="<?php the_permalink();?>"> <img src="<?php echo $wpcx_thumb;?>" /> </a>To change these you should make a child theme:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/You’ll probably also want the alt tags for images to improve accessibility:
http://www.w3schools.com/tags/att_img_alt.asp
http://accessibility.psu.edu/imageshtml
As an example it could look like this:
<img src="<?php echo $wpcx_thumb;?>" alt="<?php the_title();?>">That will then take the articles title as the alt tag. Just an example. 🙂
Hope this helps.
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Make] Get rid of Reply sectionHey there,
Hope you’re well.
You could hide it with CSS:
#respond {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/
Or you could still go the child theme route but instead remove the physical code, single.php:
<?php get_template_part( 'partials/content', 'comments' ); ?>And page.php:
<?php get_template_part( 'partials/content', 'comments' ); ?>Hope this helps.
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Customizr] showing more than 2 posts in blogHey there,
How are your admin settings for the front in:
Admin –> Settings –> Reading
There is a setting here called “Blog pages show at most“. Does increasing that help?
Take care.
Forum: Themes and Templates
In reply to: Default Theme Gallery Alignment issueExcellent! 🙂
Glad I could help 🙂
Forum: Themes and Templates
In reply to: Default Theme Gallery Alignment issueHey there.
Rather than being absolute and moved over you could try this CSS:
div.pp_overlay, div.pp_pic_holder { position: fixed; }Hope this helps.
Take care.