TT Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ShootingStar] Page AttributesThis custom CSS will hide the sidebar on individual posts:
.single #sidebar {display: none;} .single #content {width: 100%;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [ShootingStar] Q about color’sHi Knud,
some color settings can be found in “Appearance > Customize > ShootingStar Header/Main Content/etc. Color Settings”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [ShootingStar] Page AttributesHi @jedicolin,
the Page Templates feature is available only for static pages. To hide the right sidebar on the page with latest posts, please put this custom CSS in “Customize > Additional CSS”:
.blog #sidebar {display: none;} .blog #content {width: 100%;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Front page has disappeared on mobileHi @healthehelen,
please check whether you haven’t enabled the Jetpack’s Mobile Theme module or any other mobile theme that is included in a third-party plugin.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Add a sub-menu indicator to parent menu itemsDear Spaniole Olsen,
please put this custom CSS in “Customize > HappenStance General Settings > Custom CSS”:
body .menu-box ul .menu-item-has-children a:after { content: " \33"; color: #ffffff; font-family: ElegantIcons !important; font-variant: normal; speak: none; text-transform: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body .menu-box ul .menu-item-has-children .sub-menu a:after { content: ""; }
Best regards,
Tomas TomanHi,
you can apply the specific page IDs:
.page-id-1 #wrapper-content #main-content, .page-id-2 #wrapper-content #main-content, .page-id-3 #wrapper-content #main-content { padding-top: 10px !important; }
Best regards,
Tomas TomanHi,
this custom CSS allows you to reduce it:
#wrapper #wrapper-content #main-content {padding-top: 10px;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HappenStance] Visual Vs. Text ViewsDear Monica,
at first, please try to deactivate all installed plugins and empty cache in your browser as there might be a plugin conflict causing this issue. Also verify whether the problem persists if you switch to the default Twenty Sixteen theme to rule out a theme-specific problem. If the Visual editor works correctly with a different theme, please try to reinstall the HappenStance theme from a fresh copy.
If the above steps do not resolve the issue, try:
– turn on script debugging in wp-config.php to diagnose JavaScript errors
– adding this line to your wp-config.php file:
define( 'WP_MEMORY_LIMIT', '64M' );
– reinstall WordPress from a fresh copyBest regards,
Tomas Toman- This reply was modified 8 years, 1 month ago by TT Themes.
Hi,
the SeaSun theme hasn’t any specific requirements to work correctly as a child theme. If the Child Theme Configurator does not work properly for you, I recommend you to create a child theme manually as described in the Codex.
Best regards,
Tomas TomanHi,
please verify whether the problem still occurs if you deactivate all installed plugins. If so, please check whether the pagination links work correctly if you switch to the default Twenty Sixteen theme.
If the problem persists, there might be a problem with your .htaccess file. Please check whether is your .htaccess file configured as instructed in the Codex.
Best regards,
Tomas TomanHi,
to hide the header image from one particular page, I recommend you to use the WP Display Header plugin.
Or you can use this custom CSS:
.page-id-35 .header-image {display: none;}
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [HighTide] Solve an errorHi,
I am sorry, but this theme is no longer actively maintained and updated. There are minor compatibility issues with the latest WordPress version, but the mentioned notice should appear only if the WP_DEBUG constant in “wp-config.php” is set to “true”. It is not recommended to use WP_DEBUG or the other debug tools on live sites since they are meant for local testing and staging installs.
To make the called constructor method for WP_Widget compatible with the latest WordPress version, please search for the following code in “hightide/functions/fe/widget-posts-default.php”:
function hightide_homepage_default() { $widget_ops = array('classname' => 'homepage-default-posts', 'description' => __('Displays the latest posts from the selected category in the default manner. This widget is intended only for placing into the Latest Posts Homepage widget area.', 'hightide') ); $control_ops = array('width' => 200, 'height' => 400); $this->WP_Widget('hightidedefault', __('HighTide Posts-Default', 'hightide'), $widget_ops, $control_ops); }
and edit it in this way:
function __construct() { $widget_ops = array('classname' => 'homepage-default-posts', 'description' => __('Displays the latest posts from the selected category in the default manner. This widget is intended only for placing into the Latest Posts Homepage widget area.', 'hightide') ); $control_ops = array('width' => 200, 'height' => 400); parent::__construct('hightidedefault', __('HighTide Posts-Default', 'hightide'), $widget_ops, $control_ops); }
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [ForeverWood] Immagine in evidenza – thumbnailsDear Ann,
unfortunately, I am not sure whether I correctly understood your request. If possible, please post here a link to your website so I could see its configuration.
If you would like to hide the featured images (post thumbnails) in the single post view (but keep them on archive pages), please select “Hide” in “Customize > ForeverWood Posts/Pages Settings > Display Featured Image on single posts”.
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [VisitPress] Tagline Doesn't Show on Mobile DeviceHi Adriana,
if the previous solution did not work properly for you, please try to decrease the font size for the Site Title and the Tagline on mobile devices:
@media screen and (max-width: 700px) { #header .site-title {font-size: 25px;} #header .site-description {font-size: 20px; margin-top: 0;} }
Best regards,
Tomas TomanForum: Themes and Templates
In reply to: [SeaSun] How to reduce background and header space to zeroHi,
unfortunately, I am not sure which space are you referring to. If possible, please post here a screenshot of your header configuration.
Best regards,
Tomas Toman