TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [HappenStance] Blog page traduction problemHi,
the “Latest Posts” headline is editable through “Appearance > Customize > HappenStance Post Entries/Blog Page Settings > Latest Posts (Blog) page headline”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [GalaNight] Making accessible dropdown menusHi,
if you would like to add an arrow symbol after a parent menu item to inform visitors that there is a submenu, you can put the following code after the Navigation Label text:
<i class="arrow_carrot-down" aria-hidden="true"></i>Or you can use the Max Mega Menu plugin.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] i want to delete or hide this areaHi,
this custom CSS should help:
#wrapper .header-content-wrapper {display: none;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Featured posts on first pageI am glad that I could help you!
With the best wishes,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Featured posts on first pageDear Miguel,
unfortunately, my themes do not support featured posts, but you can mark some posts as “sticky“. The sticky posts are displayed at the beginning of the post loop on the latest posts page.
Or you can set a custom order for posts using the Simple Custom Post Order plugin.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Adding Phone Number to Social SectionHi Hannarchist,
I am sorry, but this feature is not available in the theme at this moment. I will consider to add it in a future update. I recommend you to put your phone number into the “Top Header Menu”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] Featured Images SizeHi,
the following custom CSS allows you to set the “large” Featured Images Size when the screen width is smaller than 1012px (the “small” Featured Images Size has to be selected as a default option):
@media screen and (max-width: 1012px) { #wrapper .post-entry .attachment-post-thumbnail {margin-right: 0; max-width: 100%; width: 100%;} }Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [LeatherDiary] PHP7-compatibilityThank you for information, I have missed this change. I am going to upgrade the construction in the next update that I am planning to release in January.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [LeatherDiary] PHP7-compatibilityHi,
so far, I haven’t noticed any compatibility issues with PHP 7. Could you please report me which issues have you experienced? Thank you!
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] How to remove author from post ?Hi,
please add this custom CSS:
#wrapper #main-content .post-meta .post-info-author {display: none;} #wrapper #main-content .post-meta .post-info-date {border-left: none; padding-left: 0;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuDear Feldstein,
please try to add this custom CSS (just change the margin-top value if needed):
@media screen and (min-width: 1012px) { #wrapper .header-logo {float: right; margin-top: -50px;} }Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [MaryAnne] Video player widthYou need to put the following code into your child theme’s “functions.php” to enqueue the parent theme’s stylesheet:
add_action( 'wp_enqueue_scripts', 'maryanne_child_enqueue_styles' ); function maryanne_child_enqueue_styles() { wp_enqueue_style( 'maryanne-parent-style', get_template_directory_uri() . '/style.css' ); }Your child theme’s stylesheet will usually be loaded automatically.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuDear Feldstein,
if possible, please post here a link to your website so I could view it to help you to manage the header area.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuDear Feldstein,
if you would like show both a Logo and the Site Title in header, then you will need to edit this code in “header.php”:
<?php if ( get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url']) == '' ) { ?> <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p> <?php } else { ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url(get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url'])); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a> <?php } ?>in this way:
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="header-logo" src="<?php echo esc_url(get_theme_mod('happenstance_logo_url', $happenstance_defaults['happenstance_logo_url'])); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a>Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [MaryAnne] Video player widthI recommend you to create a child theme and put the following code into your child theme’s “functions.php” to change the default $content_width:
function maryanne_child_setup() { global $content_width; $content_width = 870; } add_action( 'after_setup_theme', 'maryanne_child_setup' );The width of the content area when the right sidebar is hidden is 870 px.
Best regards,
Tomas Toman