TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [HappenStance] Happenstance Child ThemeHi,
you need to create a child theme by yourself. I recommend you to follow this guide. Or you can create a child theme just by clicking using the One-Click Child Theme plugin.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Font SizeHi,
please put the following custom CSS into “Customize > HappenStance General Settings > Custom CSS”:
body p, body ul, body ol, body li, body dl, body address, body table { font-size: 14px; }Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [GalaNight] Remove commas from between the categorias tagsHi,
you will need to edit the following code in “content-archives.php” (for the post entries visible on archive pages) and in “single.php” (for the full post view):
<?php the_category(', '); ?>in this way:
<?php the_category(' '); ?>Instead of modifying the original theme directly, I recommend you to create a child theme.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RetroTale] Divider below the header menuHi,
if you would like to show the picture just under the menu bar, I recommend you to set it as header image through “Appearance > Header”. This plugin allows you to show the header image only on a specific page.
To hide the empty page title area on the linked page, you can use this custom CSS:
.page-id-4 .content-headline {display: none;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [GalaNight] Featured Image optionsHi,
there are two default options how to display Featured Images in this theme. You can select between them in “Customize > GalaNight Post Entries Settings > Featured Images Size”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] Posts title not properly wrapping on mobileThank you for the link. It seems that there is a CSS conflict with a third-party plugin. Adding the following custom CSS into “Customize > SongWriter General Settings > Custom CSS” should fix it:
#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5, #wrapper h6 {white-space: normal;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] Posts title not properly wrapping on mobileThank you for the link. It seems that there is a CSS conflict with a third-party plugin. Adding the following custom CSS into “Customize > SongWriter General Settings > Custom CSS” should fix it:
#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5, #wrapper h6 {white-space: normal;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SongWriter] Posts title not properly wrapping on mobileHi,
I am sorry, but the link you provided is not working at this moment. Please post here a valid link to your website so I could check it.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuHi,
I am sorry, but there has to be a background color under the page title so that the letters don’t go over the hatched line (as it is by default).
To make only one page in the Boxed layout, you will need to create a child theme and put the following code into your child theme’s “functions.php”:
function happenstance_child_css_include () { if ( !is_page( 1234 ) ) { wp_enqueue_style('happenstance-child-wide-layout', get_template_directory_uri().'/css/wide-layout.css'); } } add_action( 'wp_enqueue_scripts', 'happenstance_child_css_include' );Just replace the number “1234” in the code above with the appropriate ID of the page where you would like to have the Boxed layout. The “Boxed” layout needs to be set in the Customizer in order to make it work.
Best regards,
Tomas TomanNote: If you have a question that is not related to the original topic, please create a separate topic for each new question. It helps to make the forum clearer. Thank you!
Forum: Themes and Templates
In reply to: [HappenStance] Header & MenuI recommend you to put all custom CSS into “Appearance > Customize > HappenStance General Settings > Custom CSS”. If you would like to hide only the white background but keep the background pattern (the hatched line), then please use this custom CSS instead:
#wrapper .entry-headline-text {background: none;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuIt should help if you change the value of the “margin-top” property from -50px to a lower value (about -90px) in the following custom CSS:
@media screen and (min-width: 1012px) { #wrapper .header-logo {float: right; margin-top: -50px;} }
Then you will need to decrease the value “top” for the .site-title as well:
@media screen and (min-width: 1012px) { #wrapper .site-title {top: 120px;} }
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuThis custom CSS allows you to hide the background around page titles:
#wrapper .entry-headline, #wrapper .entry-headline-text {background: none;}If you would like to completely hide the title area on some pages, please select the template “Page without Title” or “Full Width without Title” in the right side panel “Page Attributes” when you edit a page.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuHi Kassie,
if you would like to have the header area in “boxed” layout, then please replace the previously suggested CSS with this one:
#wrapper .header-content {background: white;} @media screen and (min-width: 1170px) { html #wrapper .header-content {display: inline-block; left: 50%; margin-left: -585px;} } @media screen and (min-width: 1012px) { #wrapper .header-content {display: inline-block; left: 50%; margin-left: -506px;} }Or if you would like to get rid of the white background in your logo, I recommend you to edit the logo image in a graphic editor and save it as a transparent image without the white background (in PNG format instead of JPG).
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuHi Kassie,
I am glad that I could help you!
If you would like to set white background for the header area in the Wide layout, please add this custom CSS:
#wrapper #header {background: white;}Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header & MenuHi @jmbfishing,
thank you for updating it. Please add this custom CSS to center the Site Title vertically:
@media screen and (min-width: 1012px) { #wrapper .site-title {top: 120px;} }If you would like to move the Site Title more to right, then you can add the “left” property:
@media screen and (min-width: 1012px) { #wrapper .site-title {top: 120px; left: 20px;} }Best regards,
Tomas Toman