Forum Replies Created
-
AuthorPosts
-
tikaram
Member@raddoerr : I have replied in the new topic that you have created. Hope it solved your issue.
Regards,
TikaramJune 30, 2017 at 3:57 am in reply to: The problem with displaying content and sticking footer #118355tikaram
Member@ocean : Please try disabling all plugins and check. If it does not works then download and install a fresh copy of theme. Let me know how this goes.
Regards,
Tikaramtikaram
Member@onikata : There are some errors on your additional css. Please replace it will the following code.
/* ここに独自の CSS を追加することができます。 詳しくは上のヘルプアイコンをクリックしてください。 */ li { margin-top: 1em; margin-bottom: 1em; } /*--------------------------- 表の罫線なし --------------------------*/ table { border:none; } /* --------------------------- 表の罫線1ピクセル */ .tokusho { border: 1px; } /* -- --------------------------- */ button { font-size: 1.0em; border-style: none; padding: 15px 35px; background-color: #95bf3e; color: #fff; } button.style-test:hover { background-color: #25ee42; color: #fff; } .midashi { width:30%; } div.kaigyo { display: inline-block; } /* ------------------------------- */ /* Line Spacing CSS */ body, button, input, select, textarea { line-height: 1.9; }Regards,
Tikaramtikaram
Member@onikata: Please post in your site URL so that i can help you with the additional css.
Regards,
Tikaramtikaram
Member@raddoerr :Go to Appearance => Customize => Additional CSS find and remove the following css that i provided you earlier.
.site-branding-text .site-title a{ color: #222; font-family: "Amatic SC",normal; }After removing the additional css it will change back to white.
To change the font throughout the site you can change from custom css but can you please provide me the name of the fonts you want to use so that i can help you with the css.
Regards,
Tikaramtikaram
Member@aphdescomcast-net : It looks fine from our end. Please try clearing your browser cache and send the screen-shot if the issue continues. Please mention the model of your phone as well.
Regards,
Tikaramtikaram
Member@joaomieiro : The option to enable featured post in all pages is not available in free theme. Please upgrade to Pro to enable this feature.
Regards,
Tikaramtikaram
Member@@jamalesahq : Please mention clearly what you want to do.
Regards,
Tikaramtikaram
Member@mmarvel54 : You will need to create a child theme and edit the functions.php of child theme. I suggest you not to edit the functions.php of the parent theme directly because during an update the changes made to your functions.php will be lost.
Download the child theme for clean journal Pro from hereOpen functions.php and add the following code in your child theme.
function add_taxonomies_to_pages() { register_taxonomy_for_object_type( 'post_tag', 'page' ); register_taxonomy_for_object_type( 'category', 'page' ); } add_action( 'init', 'add_taxonomies_to_pages' ); function category_and_tag_archives( $wp_query ) { if ( is_admin() ) { return; } $my_post_array = array( 'post', 'page' ); if ( $wp_query->get( 'category_name' ) || $wp_query->get( 'cat' ) ) $wp_query->set( 'post_type', $my_post_array ); if ( $wp_query->get( 'tag' ) ) $wp_query->set( 'post_type', $my_post_array ); } add_action( 'pre_get_posts', 'category_and_tag_archives' );Upload the child theme and activate the child theme.
Let me know how this goes.Regards,
TikaramJune 29, 2017 at 2:50 am in reply to: The problem with displaying content and sticking footer #118289tikaram
Member@jamalesahq : Go to Appearance => Customize => Additional CSS and add the following css
.slides .entry-container{ display:none; }Regards,
TikaramJune 29, 2017 at 1:00 am in reply to: Is there a way to make the header image take up the full width of the website? #118286tikaram
Member@dastari: Please use header image of
width:1920pxand skip cropping while uploading.Go to Appearance => Customize => Additional CSS and add the following css.
#header-featured-image .wrapper{ width:100%; }Let me know if this works or not.
Regards,
Tikaramtikaram
Member@raddoerr : Please download and install Essential Content Types plugin.
After activating the plugin Click on Portfolio and you can add portfolio items. Please add featured image on each portfolio items and it will appear as menu.
Regards,
Tikaramtikaram
Member@bkese : Go to Appearance => Menus
Under Menu Settings box :Auto add pages Uncheck Automatically add new top-level pages to this menu
Regards,
Tikaramtikaram
Member@bkese : To stop every new page appearing in the menu :
Go to Appearance => Customize => Menus => Top MenuIn Top Menu BoxunderMenu OptionsUncheck Automatically add new top-level pages to this menu
Now the newly added pages will not appear in your menu.To delete the existing menu items :
In Top Menu Boxyou can see menu items. Click on downward pointing arrow, the menu will expand and then click remove to remove each items you want to remove. Save your settings.Regards,
Tikaramtikaram
Member@stassy : Catch Responsive theme does not supports WPML . Please upgrade to catch responsive pro because it is WPML Ready. Please let me know if you have any other issues.
Regards,
Tikaramtikaram
Member@mmarvel54 : How about using custom post types? I think it will be a better option if you can use custom post types.
Regards,
Tikaram -
AuthorPosts
