TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [SongWriter] Font sizeHi,
please put the following custom CSS in “Customize > SongWriter 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: [MineZine] Can I disable the Primary Menu in MineZine?Hi,
please put the following custom CSS in “Customize > MineZine General Settings > Custom CSS” to hide the menu area:
#wrapper .menu-box {display: none;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Post Content Color ChangeFor a page please use this custom CSS:
.page-id-1234 .entry-content, .page-id-1234 .entry-headline-text {background-color: #ff0000;}
This CSS allows you to change the page title color:
.page-id-1234 .entry-headline {color: #ffffff;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [BrickYard] Post Content Color ChangeHi,
please put this custom CSS to “Customize > BrickYard General Settings > Custom CSS” to change the entry-content background color for single posts:
.single .entry-content, .single .entry-headline-text {background-color: #ff0000;}
If you would like to set a different background color only for one particular post, then use this custom CSS instead:
.postid-1234 .entry-content, .postid-1234 .entry-headline-text {background-color: #ff0000;}
Just replace the number “1234” with the appropriate post ID.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Can't change site title style to H1Hi,
individual pages can be set to use a specific custom Page Template. When you edit a page, you can select the Page Template in the panel “Page Attributes” that is located on the right side next to the “Visual Editor” window (see this screenshot).
With the “Default” Page Template, there is only one page title. If you do not define any title for a page, the empty “h1” tag is still included in the source code. But if you select the Template “Page without Title”, there will be no page title (“h1” tag) included in the source code.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Can't change site title style to H1Hi,
yes, the second h1 heading is the page title (that is empty on your front page). To hide it completely, please select the template “Page without Title” in the right side panel “Page Attributes” when you edit the front page.
The code that generates the page title is located in the file “page.php”:
<h1 class="entry-headline"><span class="entry-headline-text"><?php the_title(); ?></span></h1>
If you would like to have only one h1 heading (the site title) on all your pages, just change the “h1” parameter to “h2” in the code above.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Can't change site title style to H1Hi,
you can edit the “header.php” file directly in “Appearance > Editor”, but instead of modifying the original theme directly, I recommend you to create a child theme. The mentioned code is located on the line number 56 in “header.php” (in HappenStance 2.0.7 – free version).
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header Spacing IssueI am glad that I could help you! ??
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Header Spacing IssueHi @codyrauh,
please add the “padding-top” property to your custom CSS to get rid of the space above the logo:
.header-content { padding-bottom: 0; padding-top: 0; }
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RetroTale] Images won't stretch across entire pageHi,
I am glad it helped! Plugins sometimes can work very unpredictably and cause conflicts between themselves. If you notice some strange behavior on your website, I recommend you to deactivate all plugins (one by one) as a first step in troubleshooting. In most cases it can fix the issue.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Can't change site title style to H1Hi,
please search for the following code in “header.php”:
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></p>
and edit it in this way:
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RetroTale] Images won't stretch across entire pageHi,
if you deactivate all plugins, does the problem still occur? When you edit the images in the Visual Editor, is selected the “Maximal” size?
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RetroTale] Images won't stretch across entire pageHi,
the problem is caused by the fact that the images are not wide enough to stretch across the entire page. The width of the content area without sidebar is 1114 px, but your images are only 734 px wide. Please upload them in a higher resolution (or center them in the Visual Editor to achieve a better look).
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [VisitPress] Tagline Doesn't Show on Mobile DeviceHi,
adding this custom CSS into “Theme Options > Other Settings > Custom CSS” should fix it:
@media screen and (max-width: 700px) { body #wrapper-header {min-height: 250px;} }
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [RestImpo] Masonry GridDear Mike,
yes, some of my themes already support Masonry Grid layout, but I am currently not considering to add it to the other themes. Thank you for understanding.
Best regards,
Tomas Toman