TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [RestImpo] Menu not displaying correctlyYou’re welcome!
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Disable color linesDear Natalie,
to hide the line above the active menu item, please insert the following CSS into “Theme Options > Other Settings > Custom CSS”:
#wrapper #wrapper-header .menu-box .current-menu-item > a, #wrapper #wrapper-header .menu-box .current-menu-ancestor > a, #wrapper #wrapper-header .menu-box .current_page_item > a, #wrapper #wrapper-header .menu-box .current-page-ancestor > a { border-color: white;}To disable the line at the bottom of a page, please use the following CSS:
#wrapper #wrapper-footer {border-top: none;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Hide Header imageDear Stein7,
I am glad that you were able to resolve your problem! You also can simply remove the header image by clicking on the button “Remove Header Image” in the “Appearance > Header” panel.
If you would like to hide the header image using custom CSS, the following one should working:
body .header-image { display: none !important; }Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] error when create a child of this themeHi,
please try to add the following information at the start of your child theme’s “style.css”:
/* Theme Name: RestImpo Child Description: RestImpo Child Theme Author: Tomas Toman Template: restimpo Version: 1.0.0 */For including the parent stylesheet, you should use the “wp_enqueue_style” instead of the “@import”. Here you can find more information how to correctly include the parent stylesheet using the “wp_enqueue_style” in your child theme’s functions.php template.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [MineZine] Problems in l10n.phpDear Guy,
thank you for information. I just have tested the “Custom User Contact Methods” plugin with MineZine theme and everything seems to work fine. Did you please modify the “author.php” template somehow?
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [MineZine] child header.phpYou are welcome! 🙂
Forum: Themes and Templates
In reply to: [MineZine] child header.phpTo attach a custom Javascript, you do not need to edit the “header.php”. Just add the following code into your child theme’s “functions.php” to enqueue the “hidefieldsScript.js” script (which has to be placed into the “js” sub-folder within your child theme’s main folder):
function minezine_child_scripts() { wp_enqueue_script( 'minezine-child-hidefields', get_stylesheet_directory_uri() . '/js/hidefieldsScript.js', array( 'jquery' ), '1.0.0', false ); } add_action( 'wp_enqueue_scripts', 'minezine_child_scripts' );Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Styling footer-signatureI am glad that I could help you!
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [MineZine] child header.phpIt depends on what you need to edit in the “header.php”. For example, if you would like to modify some elements (menus, site title, etc.) in the “header.php”, then you will need to copy the original template. If you do not need to modify any default elements, then you could use an “include” or “require_once” (the mentioned post in the support topic which you have referenced only says that it is not recommended to use the “@import url” – the better way is to use the “include” or “require_once” for including the parent template).
Note: If you would like to add some script into the header, the best way how to do it is by using the wp_enqueue_script functions through your child theme’s “functions.php”.Best regards,
Tomas Toman – TT ThemesForum: Themes and Templates
In reply to: [MineZine] child header.phpDear Guy,
if you would like to make some modifications in the “header.php” template, please copy the original “header.php” into your child theme’s folder and make here the desired modifications. Your child theme’s “header.php” will override the equivalent file in the parent theme directory.
Here in the WordPress Codex, you can find more useful information about managing child themes.Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Styling footer-signature@mburke79: When you add a Text widget into the “Footer notices” area, please check the option “Automatically add paragraphs” at this widget. If you do it in this way, you will be able to use the “.footer-signature-content p”, because the text will be formatted as a paragraph. If the option “Automatically add paragraphs” is not checked, the text appears only within a “div” element, so the styles used for paragraphs don’t affect it.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] External links not workingI am glad that I could help you!
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] External links not workingDear Donna,
it seems that you are using some plugin which affects the standard page layout. Please try to insert the following CSS into “Theme Options > Other Settings > Custom CSS”, it should fix the problem:
#kt-copyright {float: left; width: 100%; z-index: 10000;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Additional Social Network Links@uncle Matt: Unfortunately, these options are not available by default in the Free version. You will need to use a social network plugin.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Menu not displaying correctly@taylornatalierose: Hi, in this moment, I can see that your menu is displayed correctly (in one row). If you still can see it to be displayed incorrectly after reinstalling the theme, please try to refresh your browser or empty cache.
For setting the menu width, please go to “Theme Options > General Settings > Menu Box width”. The sum of values “Menu Box width” and “Title Box width” always should be 100%, because the percentage values are due to the total page width.For making custom changes in a theme, I can recommend you to create a child theme instead of overwriting the original files.
Best regards
Tomas Toman