TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [SongWriter] Site widthDear Balazs,
I am glad that you have fixed the issue. It seems that the problem was most probably caused by the fact that there is no
.sidebarelement in the original theme – instead of it, you should use#sidebarin your custom CSS.Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Home button on mobile siteHi,
the home button hasn’t been displayed on the mobile version since the very first release. If you would like to display it, please insert the following CSS code into “Theme Options > Other Settings > Custom CSS”:
html #wrapper .menu-box .link-home {display: block !important;} .js .selectnav {width: 80% !important; float: right !important;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] header background color/image SongWriter premiumHi,
to ensure that your header logo will cover the whole header area, please insert the following CSS code into “Theme Options > Other Settings > Custom CSS”:
#wrapper .header-content-wrapper {padding: 0;} #wrapper .header-content-wrapper .header-content {float: left; width: 100%;} #wrapper .header-content-wrapper .header-logo {float: left;}Or, instead of setting the header logo, you can set a header image through the “Appearance > Header” panel. This header image will be displayed just under the main header menu and will automatically cover the whole screen width.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] House iconYou are welcome! 🙂
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] House iconDear Balazs,
to hide the menu bar if the width of the screen is less than 600px, please use this CSS:
@media screen and (max-width: 600px) { #wrapper .menu-box-wrapper {display: none;} }The #nav ID is related to the unordered list which contains the individual menu links – it is located within the .menu-box-wrapper.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [WinterDream] Theme widthI am glad that I could help you! 🙂
Forum: Themes and Templates
In reply to: [SongWriter] House iconHi,
to hide the house icon, please use this custom CSS:
#wrapper .link-home {display: none;} .menu-box #nav {border-left: 1px solid #535353; float: left;}Or, you can directly delete its code in the “header.php” template:
<a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"><i class="icon_house" aria-hidden="true"></i></a>Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [WinterDream] Theme widthHi,
to increase the theme width in the Boxed layout, please insert the following CSS into “Theme Options > Other Settings > Custom CSS”:
body #container-boxed { width: 1220px; } html body .footer-signature-content, html body .menu-panel, html body .container, html body #footer, html body .header-content, html body .top-navigation { max-width: 1160px; } html body #main-content { width: 830px; } html #wrapper #container-boxed .sticky-nav { max-width: 1220px; } html body .header-image .header-image-text-wrapper { width: 1160px; } html body .footer-widget-area { width: 366px; }Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] Child ThemeDear Balazs,
this theme is ready for creating child themes. Please see the official guide in the WordPress Codex for more information about child themes.
If your problems continue, please try to deactivate all your installed plugins (one after another), because there might be a plugin conflict which causes this issue. Also verify that your user account has full permissions, because the “Cheatin, uh?” message usually appears when you try to access some content for which you do not have the appropriate access rights.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Banner image above header image…@richey1977: You can simply set your logo image (which will automatically replace the site title in header) in “Appearance > Theme Options > Header Settings > Logo URL”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [TimeTurner] LogoHi,
you can replace the hourglass with your custom logo through “Theme Options > General Settings > Header options > Logo URL”. The recommended dimensions of the logo image are 100×180 pixels.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Create a widget area below header navigation menuNo problem, I am glad that I could help you! 🙂
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Background imageI am glad that I could help you! Once you purchase the Premium version, please follow these steps.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Background imageHi,
to ensure that the background image will always fit the whole screen, please use this custom CSS:
#wrapper {background-size: cover;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Search FunctionHi,
you can change the position of the header search form using this custom CSS:
body .header-content #searchform .searchform-wrapper {top: 250px;}To embed it into the navigation bar, you will need to modify the “header.php” template, so I can recommend you to create a child theme. In “header.php”, search for the following code:
<div class="menu-box"> <a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"></a> <?php wp_nav_menu( array( 'menu_id'=>'nav', 'theme_location'=>'main-navigation' ) ); ?> </div>and modify it in this way:
<div class="menu-box"> <a class="link-home" href="<?php echo esc_url( home_url( '/' ) ); ?>"></a> <?php wp_nav_menu( array( 'menu_id'=>'nav', 'theme_location'=>'main-navigation' ) ); ?> <div style="float: right; width: 10%; margin-top: 7px;"><?php get_search_form(); ?></div> </div>Best regards,
Tomas Toman