Hello,
Our demo doesn’t have unclosed DIVs https://demo.hot-themes.com/wordpress/rain/category/blog/ and the right sidebar works correctly. Also, it works correctly on other pages of your site (only the FAQ has the problem).
I can only recommend you to re-download the theme from our site and re-upload theme files (you can skip CSS files that you modified).
Thanks,
Milos
Hello,
On the FAQ page you have enclosed DIVs and it comes from your content. I don’t know where it is exactly, so you need to edit all the content of this page to find it.
If you are sure that you don’t have enclosed DIVs or can’t find them, please make let me know when you downloaded the theme? Maybe you have outdated theme files.
Thanks,
Milos
Hello,
Please edit theme file style.css and around line 2070 remove this:
.cols-2 div.item {
width: 332px;
float: left;
}
and this:
.cols-2 div.item:first-child {
margin: 0 38px 0 0;
}
Best Regards,
Milos
Hi Mary,
Thank you for the feedback. Do you think that we will develop more WordPress themes based on Gutenberg or maybe more themes based on Elementor (like HVAC theme) or even Visual Composer builder (free version)?
Thanks,
Milos
Please edit theme file sparky.css and find this part:
.logorow {
background: url(../images/header_inner_bg1.jpg) no-repeat;
background-size: cover;
position: relative;
z-index: 0;
}
Delete line z-index:0;
Best regards,
Milos
Hello,
I checked your site and confirmed that the menu works properly. It works for both main items and also sub-items.
Best regards,
Milos
Hello,
1. Using the link from the email you received from us, you will download this file to your computer: “hot_destinations_wp_unzip_first.zip”
2. Unzip it on your computer.
3. You should see the files as on the image attached.
Is this what you have?
Thanks,
Milos
Hello,
Please do not try to install the file you downloaded from our site directly. Instead, unzip it first and read the documentation.
If you want to install the Destinations theme with demo data (to make your site look exactly like our demo), then you should follow our documentation for the HotStart installation. It’s inside the theme folder (documentation sub-folder) that you should unzip after download. You can also read it online from here https://hot-themes.com/documentation/hotstart/
So, the HotStart is a full WordPress installation and comes with all data and plugins as on our demo. After the installation, feel free to upgrade WordPress or add or remove plugins as you need.
Best regards,
Milos
Hello,
1. You should edit file /wp-content/themes/hot-golf/js/sparky.js and after line:
"use strict";
add this:
jQuery(window).scroll(function() {
var stopScrollHeight = 300;
var currentScrollLevel = jQuery(window).scrollTop();
if ( currentScrollLevel >= stopScrollHeight ) {
jQuery(".logorow").addClass("fix_menu topmenushow");
}else{
jQuery(".logorow").removeClass("fix_menu topmenushow");
}
});
2. Edit file /wp-content/themes/hot-golf/sparky.css and after this:
.logorow .menu.starting li:hover a, .logorow .menu.starting li.current_page_item a {
color: #ffffff;
}
add this:
.logorow.fix_menu {
position: fixed !important;
top: 0 !important;
z-index: 89;
width: 100%;
background: #333 !important;
border-bottom: 1px solid #dde5de;
padding: 0;
}
.admin-bar .logorow.fix_menu {
top: 32px !important;
}
.topmenushow {
-webkit-animation-name: topmenushow;
-moz-animation-name: topmenushow;
-o-animation-name: topmenushow;
animation-name: topmenushow;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-ms-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation-duration: .5s;
-moz-animation-duration: .5s;
-ms-animation-duration: .5s;
-o-animation-duration: .5s;
animation-duration: .5s;
}
@keyframes topmenushow {
0% {
opacity: 0;
transform: translateY(-50px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
Best regards,
Milos
Hello,
First of all, I must say that the Golf theme has a complex layout. If you want to create an ordinary site with a layout that’s much different than the original Golf theme layout, it could be complex to achieve. So, it’s recommended to use a theme that has a similar layout to the site you want to create.
To fix the problem with the floating image, please edit theme file sparky.css and find this part:
.sliderrow {
position: fixed;
top: 0;
width: 100%;
}
Change it to:
.sliderrow {
position: absolute;
top: 0;
width: 100%;
}
Best regards,
Milos
Hello,
Sorry, I couldn’t reproduce the issue on our server. When I delete any widget from the Customizer and Publish the changes, it’s deleted forever. Anyway, please try deleting them from Appearance > Widgets. On this page, open a widget position, then open a widget and click Delete link at the bottom of the widget’s options panel.
Best regards,
Milos
Hello,
These are just notices, not errors and they are displayed because your server is set to display all PHP messages. You can fix them if you edit file hot_gallery.php and around line 91 change this:
if(!$options['ImageFolder'])continue;
with this:
if(isset($options['ImageFolder'])) {
if(!$options['ImageFolder'])continue;
}
and in file around line 88 change this:
if(!$options['ImageFolder'])continue;
with this:
if(isset($options['ImageFolder'])) {
if(!$options['ImageFolder'])continue;
}
Also, we will upload updated theme files soon, so you can reinstall the theme if that’s easier for you.
Thanks,
Milos
Hello,
Best regards,
Milos
Hello,
Perhaps you are missing the video on your home page. Login to your WordPress Dashboard, go to Appearance > Widgets. Open position TOP1. Make sure you have a ‘Custom HTML’ widget there with this content:
<div id="videobg"></div>
<video autoplay muted loop poster="https://tashiweb.it/blog/wp-content/uploads/video/video.jpg" id="bgvid">
<source src="https://tashiweb.it/blog/wp-content/uploads/video/video.mp4" type="video/mp4">
<source src="https://tashiweb.it/blog/wp-content/uploads/video/video.ogg" type="video/ogg">
<source src="https://tashiweb.it/blog/wp-content/uploads/video/video.webm" type="video/webm">
Your browser does not support the video tag.
</video>
If you don’t have the widget, drop ‘Custom HTML’ widget from the widgets pane and enter this content inside it.
Finally, under “Control widget visibility”, make sure you selected “Front page” and “Show selected” options.
Best regards,
Milos
Hello,
Please edit theme file style.css and remove this (around line 2492):
.mp_logo {
background: url(images/custom/logo_bee.png) no-repeat;
background-position: 235px 15px;
-webkit-transform-origin: 50% 100%;
}
Best regards,
Milos