Balint Toth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme: Preus- Create more than one posts pageHello! You have to create a file called category.php, so WordPress uses that file for every category listing page. For doing that, it is the best way to create a so called child theme, because this kind of theme modifications get deleted when you refresh your theme or WordPress. Here is a great article which describes how to create a child theme.
I will install the theme and try to come up with the necessary code for your needs, I will get back to you shortly.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Need a Little Help With My Vantage ThemeFor customizing the white space above the footer, in other words between the bottom of the content area and the footer, here is the necessary CSS code:
article.post, article.page { border-bottom: 20px; padding-bottom: 20px; }Just edit the
pxvalues to your needs. theborder-bottomsets the white space between the content and the white line, the padding sets the space between the white line and the footer.Regarding the sidebar text color, from what I can tell, you have the Black studio TinyMCE plugin installed, so the easiest way is to change the color with that. Please go to
Appearance->Widgetsand open the proper widget. Here you should have the necessary text editing buttons to change the color (I cannot provide you with the exact widget area names, because I don’t know which theme you are using). Here is how it looks like on my site, but at you the Home Widget 1 will be different:
ScreenshotRegarding the custom colored box, do you want just behind the sidebar, or behind the whole text area on your site?
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Need a Little Help With My Vantage ThemeHello!
I am here to help you with your issues.
Regarding the About Us page comments: in the Dashboard, please go to edit that particular page or post. Under the page’s or post’s content editing box (where you type in the post text), there should be a box called Discussion, and there an option to allow comments. Make sure that the checkbox is not checked.
If the Discussion box is not visible, then go to the top of the page, and in the top right corner there is a Screen Options tab, click on that, and make sure the Discussion checkbox is checked. This should show the Discussion box.
If that is not the cause of the problem, I think Jetpack also adds some kind of commenting capability, but in the current version I don’t see an option to turn that off.
If everything fails, you can hide the whole comment section with css. Please use this code, with the Jetpack CSS Editor, or install the Simple Custom CSS plugin:
.page-id-2 #single-comments-wrapper { display: none; }I will post my reply to the other two issues in a moment.
Forum: Themes and Templates
In reply to: [Openstrap] SLIDER: Dotted line appearing (IE & Firefox)Hello! It looks like the site is currently down or there is a typo in the web address, because I cannot open it. Could you please check it?
Thank you!
Forum: Themes and Templates
In reply to: [Church] Setting up a child themeHello! Could you please share the contents of your child theme’s style.css file?
Forum: Themes and Templates
In reply to: [evolve] resize sidebar to fit contentI am glad that I could help you.
If there is anything else I can help you with, just drop a line here, and I am happy to give a hand.
Have a nice day!
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Spun] Change Sentence in FooterYes, you have to copy the whole footer.php file to your child theme’s folder, and there, don’t replace all the code, just that couple of lines that you have pasted in, in the rows about 19-24 (although your file can be a little bit different, regarding the row numbers).
Remember to activate the child theme so WordPress uses that, and not the original theme.
Let me know if you were able to make it work.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [evolve] resize sidebar to fit contentSure, you just have to set the
.hfeedwidth percentage properly, for me I think the best is at 71%:.hfeed { width: 71%; }Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Change widget link colorSure, just add this line to the code I have posted previously, under the
colorline, so it looks like this:.widget.popular-posts a, .widget_recent_entries a { color: #37B8EB; font-size: 16px; }Cheers,
Toth Balint BTForum: Fixing WordPress
In reply to: Issue with WordPress.org support forumSorry, I was not aware that they need releasing, just I have noticed it the first time now when I have posted my posts and were checking them. It is completely OK for me, just I thought this was some kind of bug and thought I should let you know…
Again, sorry for the misunderstanding.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Google font plugin and changing post headerHello!
These plugins work in a way that you have to tell them specifically to what elements you would like the chosen Google font to apply. Could you please tell me the exact name of the plugin you are using (WP Google Fonts, Google Font Manager, Easy Google Fonts, Google Typography, Google Web Fonts Manager, …) so I could give you the exact steps necessary to solve your issue?
Thank you!
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: Change widget link colorHello!
You can accomplish that very easy with the help of some css modifications and the plugin called Simple Custom CSS.
Please install that plugin, then go to
Appearance->Custom CSSand paste in this code:.widget.popular-posts a, .widget_recent_entries a { color: #37B8EB; }Because you did not tell what color you would like, than I assumed it is the blue color or your site, but you can change the color to whatever you would like by modifying the
#37B8EBhex value.This is how it will look like: Screenshot
Let me know if I can help you with anything else.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Spun] Change Sentence in FooterHello!
There is a file
footer.phpatwp-content/themes/spun/. You will need to edit that file. The best way to do this is by creating a child theme if you don’t have one already, because this kind of edit is 100% sure to be lost when you update.In the
footer.phpfile, there is this code at rows 19-24:<div class="site-info"> <?php do_action( 'spun_credits' ); ?> <a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'spun' ), 'WordPress' ); ?></a> <span class="sep"> | </span> <?php printf( __( 'Theme: %1$s by %2$s.', 'spun' ), 'spun', '<a href="http://carolinemoore.net/" rel="designer">Caroline Moore</a>' ); ?> </div><!-- .site-info -->You will need to edit this:
<a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'spun' ), 'WordPress' ); ?></a> <span class="sep"> | </span> <?php printf( __( 'Theme: %1$s by %2$s.', 'spun' ), 'spun', '<a href="http://carolinemoore.net/" rel="designer">Caroline Moore</a>' ); ?> </div><!-- .site-info -->to this:
<a href="http://www.cevizhane.org/">COPYRIGHT © 2014 CEVIZ HANE</a> <span class="sep"> | </span> ALL RIGHTS RESERVED </div><!-- .site-info -->Let me know if I can help you with anything else.
Cheers,
Toth Balint BTForum: Fixing WordPress
In reply to: picture on linked pageHello!
I would recommend this plugin:
http://wordpress.org/plugins/easy-facebook-share-thumbnails/It has 2 options. It can set the post’s or page’s featured image to appear on Facebook, or you can set a ‘default image’. However, it is possible that it will interfere with a Facebook Like/Share plugin, if you are using one.
If you need help setting this plugin up, just tell me and I am happy to help out.
Cheers,
Toth Balint BTForum: Themes and Templates
In reply to: [Openstrap] SLIDER: Dotted line appearing (IE & Firefox)Hello!
Could you please share a link to your website, so I could try it on my machine also?
Thank you!