Asta - Just Good Themes
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I change the color of the selected nav bar category?Hi,
you would have to change the color value of the following selectors:
.nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a { color: #00ff00; }Hi Alex,
check your home page with an HTML validator. You have unclosed
<strong>elements on the right sidebar of your home page and I think that causes the problem.Hope this helps.
Forum: Themes and Templates
In reply to: [SKT Photo World] FooterYou’re welcome! Can you mark this topic as resolved?
Forum: Themes and Templates
In reply to: Edit Copyright line in Spacious themeYou’re welcome! Glad I could help.
Can you mark this topic as solved?Forum: Themes and Templates
In reply to: Edit Copyright line in Spacious themeHi there,
you can find it in themes/spacious/inc/functions.php on line 428.
Hope this helps.
Forum: Themes and Templates
In reply to: [MineZine] How do i make the main menu to stop following meHi there,
add the following code to the functions.php file of your child theme:
<?php function minezine_child_scripts_styles() { wp_dequeue_script( 'minezine-menubox' ); wp_deregister_script( 'minezine-menubox' ); } add_action( 'wp_enqueue_scripts', 'minezine_child_scripts_styles', 20 ); ?>Hope this helps.
Forum: Themes and Templates
In reply to: [SKT Photo World] FooterHi,
go to Appearance > Theme Options and change the value of the “Copyright Text”.
Hope this helps.
Forum: Themes and Templates
In reply to: language switch appear in wrong placeYou’re welcome.
To change background color you can add the following rule inside the same media query:
.theme-penthouse #submenu-wrap { background: #fff; }Asta
Forum: Themes and Templates
In reply to: language switch appear in wrong placeHi Hjalmar,
the div that contains your language buttons has absolute position. The most simple way to fix this would be to add this to the end of your child theme stylesheet:
@media (max-width:1024px){ .theme-penthouse #submenu-wrap .polylang-languages { position: static; } }Hope this helps.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Featured image not showing for protected postsHi there,
in Twenty Fifteen the featured image is not showed if the post is protected because it’s created this way. If you want to show the featured image you should create a child theme and add this in the functions.php file of your child theme:
<?php function twentyfifteen_post_thumbnail() { if ( is_attachment() || ! has_post_thumbnail() ) { return; } if ( is_singular() ) : ?> <div class="post-thumbnail"> <?php the_post_thumbnail(); ?> </div><!-- .post-thumbnail --> <?php else : ?> <a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true"> <?php the_post_thumbnail( 'post-thumbnail', array( 'alt' => get_the_title() ) ); ?> </a> <?php endif; // End is_singular() } ?>Hope this helps.
Forum: Fixing WordPress
In reply to: What is my RSS feed URl?It works. Maybe you are trying to view RSS feed on a browser that doesn’t have a built-in feed reader, for instance, Chrome?
Forum: Themes and Templates
In reply to: [Twenty-Fourteen] Menu toggle not workingOne of your plugins is loading jQuery without using wp_enqueue_script(). Disable all the plugins and then re-enable them one by one to find out which one is loading jQuery the wrong way. Then you can modify that plugin or ask the plugin author to do that and load jQuery safely.
Forum: Fixing WordPress
In reply to: What is my RSS feed URl?Hi Susan,
your RSS feed URL is http://susanmedyn.com/feed/. More info here: http://codex.wordpress.org/WordPress_Feeds#Finding_Your_Feed_URL
Forum: Themes and Templates
In reply to: [Twenty-Fourteen] Menu toggle not workingHi there,
there is a JavaScript error on your site:
TypeError: $(…).on is not a function.
As I see, two copies of jQuery are loaded on your site. The second earlier version 1.5.1 is probably loaded by one of the plugins you use (view page source, line 104):
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>I think this is what causes the problem.
Forum: Themes and Templates
In reply to: No sidebar in Creativo 5.0 ThemeHi there,
your have a premium theme, so you should contact theme author for the support.