Forum Replies Created
-
AuthorPosts
-
RobertParticipant
Thanks, it works!
RobertParticipantThanks!
RobertParticipantThanks for your help!
RobertParticipantIt works!
Thanks for your help!
RobertParticipantHi!
Thanks, woks perfect.
Last problem is the menu colors:
/*closed menu background color and font color*/ #header #mainmenu ul li a { background-color: #ffffff; /* Menu Background Color */ color: #fe0000; /* Menu Text Color */ } /*hover menü background and font color*/ #header #mainmenu ul li a:hover, #header #mainmenu ul li.current-menu-item a, #header #mainmenu ul li.current-menu-parent a, #header #mainmenu ul li.current_page_item a, #header #mainmenu ul li.current_page_ancestor a, #header #mainmenu ul li:hover > a { background-color: #3a9605; /* Menu Background Color */ color: #ffffff; /* Menu Text Color */ } /*open menu color*/ #header #mainmenu ul li ul li a:hover, #header #mainmenu ul li ul li:hover > a { background-color: #008000; } #header #mainmenu ul li ul li a { color: #fe0000; }
RobertParticipantPost width working fine, but the other not.
I want to remove “által Szilágyi Róbert S.” and “a hozzászólások lehetősége kikapcsolva” but keep the post date.
The table url: http://www.kertvarosi-iskola.hu/dolgozoink
Thanks!
RobertParticipantNo, menu colors gone, category remove under post gone, only date in posts gone…
Post size smaler than before, ther is an empty space:
There is no space between the picture and the name in the table.
Thanks for your help!
June 1, 2017 at 9:42 am in reply to: WordPress Catch Theme does not apply custom CSS after upgrade #116596RobertParticipantOK, sorry!
RobertParticipanthttp://www.kertvarosi-iskola.hu/
Thanks!
May 31, 2017 at 4:56 pm in reply to: WordPress Catch Theme does not apply custom CSS after upgrade #116551RobertParticipantHi!
Same problem here, can you help me?
/*table vertical align*/ #content table td { vertical-align: middle; } /*category remove under post*/ #content .tags { display: none; } /*left +10px*/ div.layout-978 { padding-left: 20px; } /*closed menu background color and font color*/ #header #mainmenu ul li a { background-color: #ffffff; /* Menu Background Color */ color: #fe0000; /* Menu Text Color */ } /*hover menü background and font*/ #header #mainmenu ul li a:hover, #header #mainmenu ul li.current-menu-item a, #header #mainmenu ul li.current-menu-parent a, #header #mainmenu ul li.current_page_item a, #header #mainmenu ul li.current_page_ancestor a, #header #mainmenu ul li:hover > a { background-color: #3a9605; /* Menu Background Color */ color: #ffffff; /* Menu Text Color */ } /*open manu color*/ #header #mainmenu ul li ul li a:hover, #header #mainmenu ul li ul li:hover > a { background-color: #008000; } #header #mainmenu ul li ul li a { color: #fe0000; } /*footer text*/ #footer { color: #3a9605; } #footer span, #footer a { color: #ffffff; } /*only date in posts*/ #main #content ul.post-by li { display: none; } #main #content ul.post-by li:nth-child(2) { display: block; padding: 0; background: none; } /*frontpage post no picture*/ .blog #content .post.hentry img { display: none; }
Thanks!
RobertParticipantHi!
Same issue here, after updateted to version 3.5.7 all customization gone.
De custom CSS codes still in place but not doing anything./*table vertical align*/ #content table td { vertical-align: middle; } /*category remove under post*/ #content .tags { display: none; } /*left +10px*/ div.layout-978 { padding-left: 20px; } /*closed menu background color and font color*/ #header #mainmenu ul li a { background-color: #ffffff; /* Menu Background Color */ color: #fe0000; /* Menu Text Color */ } /*hover menü background and font*/ #header #mainmenu ul li a:hover, #header #mainmenu ul li.current-menu-item a, #header #mainmenu ul li.current-menu-parent a, #header #mainmenu ul li.current_page_item a, #header #mainmenu ul li.current_page_ancestor a, #header #mainmenu ul li:hover > a { background-color: #3a9605; /* Menu Background Color */ color: #ffffff; /* Menu Text Color */ } /*open manu color*/ #header #mainmenu ul li ul li a:hover, #header #mainmenu ul li ul li:hover > a { background-color: #008000; } #header #mainmenu ul li ul li a { color: #fe0000; } /*footer text*/ #footer { color: #3a9605; } #footer span, #footer a { color: #ffffff; } /*only date in posts*/ #main #content ul.post-by li { display: none; } #main #content ul.post-by li:nth-child(2) { display: block; padding: 0; background: none; } /*frontpage post no picture*/ .blog #content .post.hentry img { display: none; }
Thanks!
RobertParticipantHi!
Thanks, it works!
Sziszi
RobertParticipantHi!
Thanks, it works!
Sziszi
RobertParticipantHi!
Thanks, it works!
Sziszi
RobertParticipantHi!
I’m trying to activate my child theme with this code, but not works.
<?php /** * Child Theme functions and definitions * */ function catchresponsive_child_footer_content() { //catchresponsive_flush_transients(); if ( ( !$catchresponsive_footer_content = get_transient( 'catchresponsive_footer_content' ) ) ) { echo '<!-- refreshing cache -->'; $catchresponsive_content = catchresponsive_get_content(); $catchresponsive_footer_content = ' <div id="site-generator"> <div class="wrapper"> <div id="custom-links"> <a title="Data Link" href="#" target="_self">Data Link</a> | <a title="Cookie Link" href="#" target="_self">Cookie Link</a> | <a title="Security Link" href="#" target="_self">Security Link</a> </div> <div id="footer-content" class="copyright">' . $catchresponsive_content['left'] . ' | ' . $catchresponsive_content['right'] . '</div> </div><!-- .wrapper --> </div><!-- #site-generator -->'; set_transient( 'catchresponsive_footer_content', $catchresponsive_footer_content, 86940 ); } echo $catchresponsive_footer_content; } add_action( 'init', 'catchresponsive_child_add_links_in_footer' ); function catchresponsive_child_add_links_in_footer() { remove_action( 'catchresponsive_footer', 'catchresponsive_footer_content', 100 ); add_action( 'catchresponsive_footer', 'catchresponsive_child_footer_content', 100 ); /** * Loading Parent theme stylesheet * */ add_action( 'wp_enqueue_scripts', 'catchresponsive_child_enqueue_styles' ); function catchresponsive_child_enqueue_styles() { wp_enqueue_style( 'catchresponsive-parent-style', get_template_directory_uri() . '/style.css' ); }
Error message: Parse error: syntax error, unexpected end of file in /storage/web/sziszi/sziszi.com/www/wordpress/wp-content/themes/catch-responsive-child/functions.php on line 52
Can you help me?
Thanks: Sziszi
RobertParticipantThanks!
It is works perfect!
Sziszi
RobertParticipantI find this code, but it shows pictures too.
For Simple Catch Free version, you can achieve this by building child theme and then copy content.php to your child theme and change the following code
<?php the_excerpt(); ?>
To
<?php the_content(); ?>
Can you give me a code, to show full post but not picture? (Show full content, no image)
Thanks!
SzisziRobertParticipantThanks!
Sziszi
RobertParticipantHi!
I will write a review!
Thanks for your help!
Sziszi
RobertParticipantHi!
Works perfect!
Thank you!
Sziszi -
AuthorPosts