Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@rickm813: In the following css, you can change the color code as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
a { color: #1b8be0; }Sakin
Keymaster@Katherine: First of all to change the font family to Oswald. You need to go to “Appearance => Theme Options => Font Family Options” and set any one element Font as Oswald. Then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#header-menu ul.menu a { color: #fff; font-family: "Oswald",sans-serif; font-size: 20px; text-transform: uppercase; }Sakin
Keymaster@Maria: There will be update releasing today which will fix this issue. Actually it is supposed to list excerpt text only. Also to let you know you can control excerpt content using more tag
<!--more-->. Just insert this<!--more-->in your page content which will split content and the content above this more tag will show in your featured content. For more about more tag, Click hereSakin
Keymaster@Katherine: Cool that you found it 🙂
Sakin
Keymaster@Six Mile Sourdough: This is strange, we need to look at this in detail and let you know it
Sakin
Keymaster@David: It should work as I just check in your site and it’s working. You can add in and let me know it. You need to refresh your browser after you make the changes.
Sakin
Keymaster@rickm813: You either need to activate old theme and delete it and then active our theme. Or you need to to add Excerpt by building child theme and delete it.
Sakin
Keymaster@Six Mile Sourdough: Is that for new page or old page. Can you create new page and try to change the layout. If this problem still exist then let me know it and I will check in your server.
Sakin
Keymaster@Kim: For that you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#third-sidebar .widget_custom_menu_wizard .current-menu-item { font-weight: bold; }Sakin
Keymaster@David: Since you are using widget menu in your header right sidebar, you can replace your
#header-menu ul.menu a, .sidebar-top .widget_nav_menu ul.menu a, #colophon #access-footer ul.menu a { }With the following:
.sidebar-top .widget_nav_menu ul.menu a { }Sakin
Keymaster@B1ngle: I checked in your site in Firefox, Chrome, Safari and IE. In all browser Social Icons are showing in your sidebar.
Sakin
Keymaster@Sarah: Thanks page “Impressum” that you are getting in header is from Default Page menu. I mean that you can replace that with your custom menu. So, in your custom menu don’t add that page. I already gave code to add in footer.
But if don’t want to use custom menu and stick with default page menu then you can add the following css in “Appearance => Theme Options => Custom CSS” box to hide it.
#access .page-item-131 { display: none; }Sakin
Keymaster@Sarah: About the header. You can create Custom Menu from “Appearance => Menus” and add the pages, category and links that you want and save menu. After that you need to assign menu location as Primary Menu from “Appearance => Menus => Manage Locations”. In this way you can just add in the pages that you want. For more about custom menu, check this http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Kristin: In Catch Kathmandu Pro theme, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#main-slider .entry-container { left: auto; right: 50px; } @media screen and (max-width: 480px) { #main-slider .entry-container { right: auto; } }Sakin
Keymaster@rickm813: your old theme must have added in page excerpt box. If you want to add it in this theme as well then build child theme, you can download it from http://catchthemes.com/blog/create-child-theme-wordpress/ and add the following code in your child theme functions.php file.
add_action( 'init', 'catchresponsive_add_excerpts_to_pages' ); function catchresponsive_add_excerpts_to_pages() { add_post_type_support( 'page', 'excerpt' ); }Sakin
Keymaster@Emmelie Brownlee: Can you post in your site URL? Also explain what’s happening to your site.
Sakin
Keymaster@David: Sorry I don’t get it what you mean here by
For other future readers, was there a different way to affect these changes?Sakin
Keymaster@Sarah: where in the footer you want to add in. If you want to add that in Footer site info section then go to “Appearance => Theme Options => Footer Options => Footer Editor” box, you can add just after All Rights Reserved. as below:
<a href="http://rapunzel-will-raus.ch/impressum/" title="Impressum">Impressum</a> -
AuthorPosts
