Forum Replies Created
-
AuthorPosts
-
Sakin
Keymaster@mmglisci: Looks like you are totally confused with the WordPress system. In WordPress we have two option for Homepage(Front page displays) that you can set from “Settings => Readings”
1. Your latest posts, where all your post will be displayed as blog.
2. A Static “Front page”, where you can set static page in homepage.So, when I check in your site today I see that you have latest posts mode. So, there is no home page and there is not way to edit that page and it will not be in your page list.
Also when you build custom menu, you can add and remove the menu item you like. See this article http://catchthemes.com/blog/custom-menus-wordpress-themes/
I am not sure what are you talking about the image below the menu. Do you mean the Featured Post Slider. Then for that also you need to create post and add featured image in that post. Then you need to ID of that post in “Appearance => Theme Options => Featured Post Slider”. See the theme instruction page http://catchthemes.com/theme-instructions/simple-catch/ for more details
Sakin
Keymaster@K.S: There is no option to do that. For that you need to customize the theme bu building child theme and adding the code in child theme
functions.phpfiles. This is bit complex task so you need to hire customizer.November 17, 2013 at 10:50 pm in reply to: How to align site title and description to the center #17357Sakin
Keymaster@owen: For image, you have to add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#site-title a { background: url("http://www.owensinclairjones.co.uk/wp-content/uploads/2013/07/apple-touch-icon1.png") no-repeat scroll 0 0 transparent; display: inline-block; height: 63px; padding-left: 65px; }And remove the following Custom CSS that you previously added for image.
#site-title { background-image: url("wp-content/uploads/2013/07/apple-touch-icon1.png"); background-repeat: no-repeat; background-size: 56px auto; line-height: 56px; padding-left: 60px; }Sakin
Keymaster@owen: This is not achievable through CSS. You need to hire customizer and work on child theme to edit the position.
Sakin
Keymaster@szempy: I cannot give say without looking at your live site. But I guess you have different content layout at Homepage Content Layout. Can you try changing that from “Appearance => Theme Options => Homepage Content Options”.
Sakin
Keymaster@Ralph177: You have Header Top Sidebar in Catch Box Pro theme, where you can add widgets through “Appearance => Widgets”. But sorry, Free version doesn’t have this option.
Sakin
Keymaster@jhayes600: This is strange the problem is only with your site. You can see our demo page, there is no issue. So, can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
#header-menu ul.menu a { font-size: 14px; }Sakin
Keymaster@K.S: I am not sure about your question. It’s bit confusing. But If you want to add image background in main container then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#main { background: url("http://tokuwcmaastricht.com/wp-content/uploads/2013/11/back.jpg") repeat scroll 0 0 transparent; }November 16, 2013 at 9:51 pm in reply to: How to align site title and description to the center #17331Sakin
Keymaster@owen: try the following CSS in “Appearance => Theme Options => Custom CSS” box.
.logo-wrap { display: block; float: none; width: 100%; text-align: center; }Sakin
Keymaster@Stefing: I am not talking about the file. I am talking about the theme that you will have in “Appearance => Themes” from your WordPress Dashboard. I mean change the theme.
Sakin
Keymaster@pmagsco: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
.social-profile ul li.google-plus a { background-position: -528px -44px; } .social-profile ul li.pinterest a { background-position: -484px -44px; } .social-profile ul li.flickr a { background-position: -440px -44px; } .social-profile ul li.rss a { background-position: -88px -44px; }Sakin
Keymaster@Lorena Poling: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
/* Remove Slider Box */ .featured-slider .slides { box-shadow: none; } /* Increase the width of Featured Column */ @media screen and (min-width: 768px) { #featured-post .post { margin-left: 0; width: 33.33%; } }I don’t understand your request of point 4. Maybe you can show me the screenshot explaining that.
Sakin
Keymaster@mmglisci: Don’t use two homepage. The best way to create static homepage is by going through “Settings => Readings => Front page displays”, then in “Front page” select your page that you want to show in homepage.
Then for menu, you can build custom menu from “Appearance => Menus”, then you can add your pages, categories and custom links as per your need. If you want to add page home then in Menu page you will see Pages box in the left, there you can click on “View All” which will show all your page and in the top, you will see Homepage. Just add that.
For details about menu, you can read our blog at http://catchthemes.com/blog/custom-menus-wordpress-themes/
Sakin
Keymaster@Sarah: So, you want in this order right
1. Logo
2. Site Title and Description
3. Header Right Sidebar1. For that go to “Appearance => Header”, there you have to check in “Show header text with your image” and then you can add site title and tagline text from “Settings => General”
2. Then add the following CSS in “Appearance => Theme Options => Custom CSS” box.@media screen and (min-width: 961px) { #hgroup.with-logo { clear: none; float: left; max-width: 50%; } }Sakin
Keymaster@calvinocampo123: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
#main { background-color: transparent; }November 16, 2013 at 7:15 pm in reply to: How to align site title and description to the center #17318Sakin
Keymaster@aroma-bobman: I check in your server and found that there was issue in your new server. It doesn’t accept the js name cookie. So, it blocked our js file jquery.cookie.min.js . This is ModSecurity issue. You can check with your hosting server to check on ModSecurity in order to work normal.
Sakin
Keymaster@jp_grennier: First, you shouldn’t edit any core theme files such as functions.php, style.css and so on. As all your edit will be reverted back when you update your theme to latest version. So, if you want to edit any core theme file then you have to build child theme and work on it there.
You have changed the structure so it will be difficult the restore the css. As the divs has been moved.
To build child theme you can just create folder in your themes directory and name it like catch-everest-child or anything as per your wish. Then first you need to create
style.cssfile and then add the code like this https://gist.github.com/catchthemes/7483260/raw/0d66c5a1c43d188e1e548500c976b3f1bf28cfed/style.cssAnd then create
functions.phpfile where you need to add code to remove the default slider and replace it with your new slider code. Here is the sample code that you need to add in yourfunctions.phpfile<?php // Removing the Default Slider function unhook_catcheverest_functions() { remove_action( 'catcheverest_before_main', 'catcheverest_slider_display', 10 ); } add_action( 'init', 'unhook_catcheverest_functions' ); // Adding New Slider Code function catcheverest_child_slider() { //Add in your code in betwwen this bracket echo '<div id="main-slider" class="container">New Slider Code</div>'; } add_action( 'catcheverest_before_main', 'catcheverest_child_slider', 10 ); -
AuthorPosts
