Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove Slider Right/Left Arrows on Nivo Slider and Hathor ThemeHey there,
You could use this CSS:
.nivo-directionNav{display:none;}This simply hides them for you. 🙂
Take care.
Forum: Themes and Templates
In reply to: Minamaze ErrorHey again,
You could log in with FTP or your file manager if you use something like cPanel to manage your hosting. You can then remove the folder and it’s files.
More reading here:
http://codex.ww.wp.xz.cn/FTP_Clients
Take care.
Forum: Themes and Templates
In reply to: Minamaze ErrorI just did the same to test again and it’s fine for me.
Perhaps upload all the files again. 🙂
You didn’t say what happened when you tried the files again?
You could also check through FTP to see the folder/file structure there to make sure it looks right and maybe even manually upload.
Take care.
Forum: Themes and Templates
In reply to: Minamaze ErrorHey there,
I just installed this theme fine on my install.
How did you install/upload it?
Either some files were missed, or somehow it was uploaded a folder or more deep for example /something/minamaze/files which won’t work.
Perhaps upload all the files again. 🙂
Let me know how you get one.
Forum: Themes and Templates
In reply to: [Make] Logo and Site Tittle in lineHey there,
Something like this will do it:
.site-title, .site-description{float:left} .site-description{margin-left:5px; padding-top:5px}If you wanted to swap the order so the title is on the right which what I think StDo wanted unless I got it wrong, you could do this instead:
.site-title{float:right} .site-description{float:left; margin-right:5px; padding-top:5px}If the title and tagline take more than 50% of the top (from left of site title to right of menu) then it will fall to a new line still. You could change the width:
.site-navigation{max-width:40%} .site-branding{max-width:60%}Hope this helps.
Forum: Themes and Templates
In reply to: Meganews Custome Menu Falling to second rowHey there,
As this is a commercial theme you’ll need to chat with the author for help on this one:
http://themeforest.net/item/meganews-magazine-responsive-wordpress-theme/7216941
As per the forum rules:
http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_Products
Just quickly though, this might put you on the right track:
@media all and (max-width: 961px){ .main-menu .sf-menu > li > a{ font-size:18px; } }Basically here we saying that for screen resolutions of 961 (this is where 960/1 was where it dropped lines for me) and smaller lets make the font size smaller so it doesn’t push to a new line. I only tested in Chrome on Mac and it seemed ok there.
All the best 🙂
Forum: Themes and Templates
In reply to: [Zippy] tagline removalHey there,
This could be done either with a child theme and editing the header.php to remove this:
<div class="tagline"><?php echo get_bloginfo( 'description' );?></div>You can learn more about child themes here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Or you could do it with some CSS:
.tagline{display:none;}There is a chance that the theme has a CSS field in the options, if not then you can us a plugin like this:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [MesoColumn] remove comments closeHey there,
You could create a child theme, edit the the page.php and remove the following one line 34:
<?php comments_template(); ?>If you don’t know about child themes you can read up here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Another option is to just use CSS which can hide it:
#commentpost{display:none;}This could be done through a plugin like:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/screenshots/
Hope this helps, take care! 🙂
Forum: Installing WordPress
In reply to: price and planHey there,
Nothing is ever unlimited, if you find any plan that claims it is then I’d challenge you to keep uploading and loading your site, I’d bet it doesn’t last long before too many resources are used and they either ask your to upgrade to something like a VPS, dedicated server, etc, or they ask you to move your site off their services which I’ve seen far too many times.
I don’t know about iPage myself but you can read some reviews of other hosts here:
http://premium.wpmudev.org/blog/web-hosting-review-so-just-who-is-the-best/
It’s important to read the comments, the author of the article represents just one experience and view. The comments speak louder.
These forums are probably not the best place to chat about hosting stuff as respectyoda mentioned, you might like to try a dedicated forum like WebHosting Talk:
http://www.webhostingtalk.com/
Hopefully this helps 🙂
Forum: Themes and Templates
In reply to: [Tracks] Disabling commentsHey Darapourafzal,
Awesome, glad to hear it! 🙂
Ben’s pretty amazing at supporting his themes and going that extra mile. Not all developers are this cool, as an extra thank you to him you might like to post a nice review for the theme:
http://ww.wp.xz.cn/support/view/theme-reviews/tracks
Take care and have a great weekend, it’s almost here again 🙂
Forum: Themes and Templates
In reply to: [Tracks] Disabling commentsHey there,
You might like to add this to Bens request:
http://ww.wp.xz.cn/support/topic/what-new-upgrades-would-you-like-to-see?replies=1
He’s looking for suggestions 🙂
In the mean time you need to do this in a child theme, and as you have no need for comments at all you could edit the index.php file and remove the 3 instances of this:
comments_template();More information on Child Themes are here:
http://codex.ww.wp.xz.cn/Child_Themes
Hope this helps, have a great day!
Forum: Themes and Templates
In reply to: [Theme Decode] change font size of contentHey there,
Are we talking about when viewing the article?
If so then something like this:
.single .content-area article .entry-content { font-size:130%; }This won’t affect the archive pages, to do that you’d need something like:
.blog .content-area article .entry-content { font-size:130%; }You can also use px or em rather than a %
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/imporved-simpler-css/screenshots/
Have a fantastic day! 🙂
Forum: Themes and Templates
In reply to: [Customizr] Adding text below sliderHey there,
You’re adding that code to your CSS?
If so that won’t work because that’s PHP not CSS. You could add this a child theme in the functions.php file.
You can read more about child themes here:
http://codex.ww.wp.xz.cn/Child_Themes
http://premium.wpmudev.org/blog/create-wordpress-child-theme/Take care.
Forum: Themes and Templates
In reply to: [Hathor] Make Slider Smaller and CenteredHey there,
If you took it to 80% you could set the margin to auto, here’s a snippet:
.nivoSlider { width: 80%; margin: auto; }Hope this helps.
Take care.
Forum: Plugins
In reply to: [Membership 2] Protected content message and shortcodesHey there centbanc,
Did you try editing the code mentioned in our last response here?
Let us know if that helps.
Take care.