Kye
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ex Astris] More text before the 'read more' tagExcellent, thanks for letting me know.
Have a great day! 🙂
Forum: Fixing WordPress
In reply to: Removed /wp in URL now only shows 403 errorHey there,
Can you check your htaccess file to ensure it’s just the default WordPress stuff:
http://codex.ww.wp.xz.cn/htaccess
Double check all files are uploaded, if the index is missing and directory browsing is disabled you’ll get this.
Check all cache is cleared.
Check file and folder permissions, files 644 and folders 755:
http://codex.ww.wp.xz.cn/Changing_File_Permissions
Also check ownership, for instance if a root account was used then the files/folders will have a root ownership rather than the account.
If everything is fine then have a chat with your hosting provider, they should be able to shed some light on this for you.
Let me know how you get on.
Take care.
Forum: Themes and Templates
In reply to: [Fashionistas] Remove Menu bar below titleHey there,
In CSS you could do this:
#main-navigation{display:none;}You could do this in a plugin or a child theme. If you use a child theme then it would be best to just edit a new header.php and remove this around line 67:
<nav id="main-navigation" class="container main-navigation" role="navigation"> <a href="#main-navigation" class="nav-open">Menu</a> <a href="#" class="nav-close">Close</a> <?php wp_nav_menu( array( 'container_class' => 'sf-menu', 'theme_location' => 'main' ) ); ?> <!-- #main-navigation --></nav>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: [Virtue] Featured Images for post in categoriesHey there,
I was just testing this and it just shows for me unless I missed a setting somewhere.
This is what I see:
http://monosnap.com/image/8MUIlZ1H9uHlKrbY1w3FwTmytoxd9s
I know this might be a silly question but was the image set as a featured image?
Like here:
Forum: Themes and Templates
In reply to: Increase spaces between linesHey there,
My ISP won’t let me visit your site, they state you have malicious content. You can see the error here:
http://monosnap.com/image/jTZPRLv59ORMEOfD1SXTTEStzT9qUe
Not sure if you’re targeting the UK but Virgin Media are a pretty large provider here so that’s potentially a good chunk of people not able to see your site. This could happen if your site has been hacked and something dodgy uploaded.
Sucuri also have you listed:
http://sitecheck.sucuri.net/results/www.entertolearn.com
http://monosnap.com/image/Y0EM5QhMdRTra0H5cFwPsXm6TOUMov
Anyway, I went through a proxy and could see the site. You could use this CSS:
#content .entry { line-height: 25px; }You can alter the px as desired. 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: [Ex Astris] More text before the 'read more' tagHey there,
The way WordPress works is that if you define an excerpt and for this theme that will be shown in it’s entirety, if you don’t set an excerpt then the theme will automatically snip it.
You could either set the excerpt or use some PHP code in the themes functions.php:
function ExArtris_change_excerpt_length( $length ) { return 100; } add_filter( 'excerpt_length', 'ExArtris_change_excerpt_length', 11 );Change the 100 to anything you wish the length to be.
Rather than adding to the functions.php file you could add these as a real simple plugin:
http://codex.ww.wp.xz.cn/Writing_a_Plugin#Creating_a_Plugin
Hope this helps.
Forum: Themes and Templates
In reply to: Increase spaces between linesHey there,
We’re going to need to see your site in order to help.
Cheers.
Forum: Themes and Templates
In reply to: [Medicine] Full WidthHey there,
If you’ve removed the sidebars you could then set the content area to full width like this:
#content-body #container {width:100%}Hope this helps.
Forum: Themes and Templates
In reply to: [Decode] How change font on title of articleHey there,
If the theme has no font options you could add some custom CSS like:
.entry-title h2{font-family:"Arial Black", Gadget, sans-serif;}You can find the common fonts here:
http://www.w3schools.com/cssref/css_websafe_fonts.asp
You can also find a ton of free fonts here:
Hope this helps. 🙂
Take care.
Forum: Themes and Templates
In reply to: [Sepfyre] Menu bar in b lackHey there,
It seems that !important is used in the CSS which sets the bg to black, you could use this to reset the value to nothing:
.current-menu-item, .current_page_item { Background:initial !important; }If you wish to change the colour you can using a hex code:
Like this for example:
.current-menu-item, .current_page_item { Background:#fff !important; }Hope this helps.
Forum: Themes and Templates
In reply to: [Weblizar] Comment Authors Not Displaying CorrectlyThat’s awesome, thanks for letting us know, I’m glad I could help. 🙂
Forum: Themes and Templates
In reply to: [Ignite] Resize Featured ImageDekisugi,
Ben’s one of those awesome developers that supports his own themes, not everyone does.This is a pretty nice looking theme.
If you have a few moments free you might like to consider leaving him a cool review, I’m sure he’d like that 🙂
https://ww.wp.xz.cn/support/view/theme-reviews/ignite
Have a great weekend!
Forum: Themes and Templates
In reply to: [Blaskan] Logo Image to the right of the titleHey there.
If there is no option in the theme for this then you could use some CSS like this:
#site-name:after{ display: inline-block; content: " "; background: url(http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/9front_logo.svg/150px-9front_logo.svg.png) no-repeat 0 0; background-size: 100%; width: 55px; height: 55px; margin-left: 20px; }Change the url for your logo. 🙂
Hope this helpsForum: Themes and Templates
In reply to: [MN Flow] Titles of the entries in the blog entry pageHey there,
The author would be best on this but it seems like on the demo site the positioning is absolute and precise. Also seems to have a different class to what you have .masonry-brick.
Are there not some theme options for this?
If not then you could float them like this:
.featured .item { float: left; }And that will do this:
http://monosnap.com/image/E4iEpmGTp464dMqmKRitdxZOChSAXb
You might like to test on other pages to ensure it gives the effect you desire. 🙂
Hope this helps.
Take care.
Forum: Themes and Templates
In reply to: [Weblizar] Comment Authors Not Displaying CorrectlyHey there,
It seems author of this theme used the wrong function, they’re grabbing the article author rather than the comment author. You can open this file up:
/weblizar/core/comment-box/comment-function.php
And change this:
<span><?php the_author();?></span>To this:
<span><?php comment_author(); ?></span>This will then get the comment author for you.
Hope this helps, have a great day! 🙂