Forum Replies Created
-
in reply to: Header
Hello,
have you installed dummy data? If you install them then your site will look like it and you can continue customizing it as you want.
You can watch the video tutorials on dummy data install https://support.codeless.co/video-tutorials/Let us know if you need further help.
Best regards!
Hello,
Custom Heading element is a visual composer element and it has the default visual composer settings, we have’t changed it. You can use one of our elements instead, like Heading element. It gets the font from the ones you have set at theme options -> typography.
Regards!
in reply to: Problem with JQuery Datepicker functionality??Hello,
Maybe it conflicts with some scrips of the theme. I can give it a look if you can show us your site credentials (in a private reply).
Best regards!
in reply to: Portfolio OptionsHello,
Some scripts/style-sheets of the theme are missing or don’t have the sufficient access rights.
Here is a screenshot of debugging:
https://postimg.org/image/prsrsvz69/Check theme and let us now if you need further help.
best regards!
in reply to: Responsive IssuesHello,
Sorry, my fault. Edit again the file. Instead the previous code add this:
/*-----------------------Google map disable zoom on scroll----------------------*/ function codelessDisableMapZoom(){ "use strict"; // Disable scroll zooming and bind back the click event var onMapMouseleaveHandler = function (event) { var that = $(this); that.on('click', onMapClickHandler); that.off('mouseleave', onMapMouseleaveHandler); that.find('iframe.googlemap').css("pointer-events", "none"); } var onMapClickHandler = function (event) { var that = $(this); // Disable the click handler until the user leaves the map area that.off('click', onMapClickHandler); // Enable scrolling zoom that.find('iframe.googlemap').css("pointer-events", "auto"); // Handle the mouse leave event that.on('mouseleave', onMapMouseleaveHandler); } // Enable map zooming with mouse scroll when the user clicks the map $('.row-google-map').on('click', onMapClickHandler); }Then add this line:
codelessDisableMapZoom();
after this:
/* Fullwidth Google Map */ codelessFullwidthMap();
Best regards!
in reply to: Sticky NavHello,
Please add this custom css code:
.header_12.open .full_nav_menu { position: fixed; margin-top: 50px; }Best regards!
in reply to: Bugs on minimal 2Hello,
1. Make sure you have added the correct link format. Ex.
2. You must set the borders at specular -> styling options -> elements styling.
3. You can select center position at codeless slider -> content.
Best regards!
in reply to: Adding jqueryHello,
I fixed it. Edited header.php file on parent theme.
Best regards!
in reply to: Problem with opened mobile menuHello,
Have you added any custom css code? The header is not fixed by default on responsive.
Regards!
in reply to: Problem with opened mobile menuHello,
Have you added any custom css code? The header is not fixed by default on responsive.
Regards!
in reply to: hiding "0 comment" on testimonial pagesHello,
Please add this css code:
#comments h4 {
display: none;
}Best regards!
in reply to: language problemHello,
What element is it? How have you added the read more?
Some words are translated automatically in the language of you wordpress (the ones included in .po file). If you don;t want to translate them, then you must edit the the files to exclude that word. It doesn’t seem a theme word.
Best regards!
in reply to: Onepage Menu linksHello,
I can see it now.
Please try this solution. Edit the file ‘js/main.js’
Find the function:
function codelessOnePage(){ "use strict"; if(window.location.hash) { $('nav .menu li a:not([href="'+window.location+'"])').parent().removeClass('current-menu-item'); } else { // Fragment doesn't exist } $('nav .menu').onePageNav({ currentClass: 'current-menu-item', changeHash: false, scrollSpeed: 750, scrollThreshold: 0.5, }); }Replace it with:
function codelessOnePage(){ "use strict"; if(window.location.hash) { $('nav .menu li a:not([href="'+window.location+'"])').parent().removeClass('current-menu-item'); } else { // Fragment doesn't exist } $('nav .menu').onePageNav({ currentClass: 'current-menu-item', changeHash: true, scrollSpeed: 750, scrollThreshold: 0.5, scrollChange: function($currentListItem) { $('nav .menu li a').parent().removeClass('current-menu-item'); } }); }let us know.
Best regards!
in reply to: Problem with JQuery Datepicker functionality??Hello,
We don’t offer support for third party plugins. We use Contact Form 7 as contact form plugin.
Best regards!