Forum Replies Created
list of topics you have created till now.
-
-
this is weird, try;
– disable all active plugins and check again.
please provide your url to check what’s wrong.
i just checked your site and it stopped at portfolio page. I will think of a a solution for this and release an update when i come up with a solution. Thanks for the feedback.
we have just updated the theme, try with the new version.
i just checked your url and it works fine on my side. But i notice the issue in some cases before. I will try to improve this functionality. Thanks for the feedback.
Hi, this theme has already round progress bar combined with a horizontal progress bar. You can try this custom css code to hide the horizontal progress bar;
#nprogress .bar { display: none !important; }when i check your code, i can’t see the script files of the theme attached to your site. Did you edit theme files directly? you can start over with a fresh copy of the theme.
css/main.cssis the main stylesheet of the theme.Hi, you need to have at least 3 pages in order to use sliding horizontal layout. One for left, one for the middle and one for the right view.
Hi, can you give an example situation where #/url doesn’t work.
Hi, your contact page menu link url is “contact” and your contact page slug is “contact-2”. They must be identical in order to mobile layout work properly. We will fix mobile menu spacing bug with the next update. Thanks for the feedback.
Did you edit the theme files directly? When i check your source code i see that main js file of the theme
main.jsis not added to your site.this is really weird, you can try
– delete your current portfolio posts and recreate them again.
– install a fresh copy of the theme and check again.Hi, try this custom css code;
@media (max-width: 767px) { .wrapper > .row { width: 100%; } }Hi, you can send credentials via the form below (including this topic url to your message).
Hi, edit
js/main.jsin the theme folder and find line : 521var itemPerRow = 4; var containerW = $container.width(); var items = $container.children('.hentry'); var columns, columnWidth; var viewports = [ { width : 1300, columns : itemPerRow }, { width : 900, columns : itemPerRow-1 }, { width : 480, columns : itemPerRow - 2 }, { width : 0, columns : itemPerRow - 3 } ];you can edit columns here.
go to Appearance > Widgets and click to Save button of your portfolio widget.
Hi, you can try this custom css code;
.header { background: #09c; }i just checked your site and it looks fine on my side. Does your problem persist?
Hi, please provide your url to see what’s wrong.
Hi, they are all available in Appearance > Theme Options.
Hi, you can upload your video files to media library in your wp admin.
1170px x 740px should be fine.
Hi, your menu is not constructed properly, please check out Documentation > Menu section.
Hi, you have a redundant “c” character just before this code in your custom css code, remove that “c” character and it should work.
.form-allowed-tags { display: none; }c ***remove this .main-navigation > ul > li:nth-child(5) > a { background-color: #ffcc00; }just checked your url on Mountain Lion both on Chrome 34 and Safari 6.1, portfolio looks fine on my side.
i just checked your page on chrome 34 on both win7 and OS X Mavericks. It looks fine on my side.
we have eliminated the error on the console now, i also noticed it appears when we resize the browser,
– now update the first code piece i gave you as;
// wait for images to be loaded p.imagesLoaded(function() { //your custom function here : $(".twentytwenty").twentytwenty(); $(window).trigger('resize'); setTimeout(function() { $(".twentytwenty").twentytwenty(); }, 500);it looks fine on my side, what is your test browser/os version ?
ok, i see the problem now;
– add this code to External Js box under Appearance > Theme Options > Style > External JS box;
<script type='text/javascript' src='http://albertafrikyan.nl/wp-content/plugins/twentytwenty/public/assets/js/jquery.event.move.js?ver=1.0'></script> <script type='text/javascript' src='http://albertafrikyan.nl/wp-content/plugins/twentytwenty/public/assets/js/jquery.twentytwenty.js?ver=1.0'></script> <script type='text/javascript' src='http://albertafrikyan.nl/wp-content/plugins/twentytwenty/public/assets/js/public.js?ver=1.0'></script>
– also add this code to External CSS box;
<link rel='stylesheet' id='twentytwenty-twentytwenty-css' href='http://albertafrikyan.nl/wp-content/plugins/twentytwenty/public/assets/css/twentytwenty.css?ver=1.0' type='text/css' media='all' />
there are lots of ready made css pricing tables on codecanyon, check them in the link below, i can help you if you encounter any problems integrating them to template;
i can’t think of a solution, maybe you can use the site title in english characters only like your url, since only you will see it.
i can’t detect the issue now, let me know when you update the code again, i will check then.
Hi, sorry we don’t have any future plan about adding pricing table to the template. Since this is a vcard template, pricing table is out of the scope of this template.
try this;
– edit
send-mail.phpin Notepad++
– go to Encoding tab and select “Encode in UTF-8 without BOM” and save.
– upload the file and check again.Hi, edit
js/main.jsin theme folder, and find line : 14, you will see;//********************************** // FIXED NAV MENU var isFixedNav = $('html').attr("data-fixed-nav") == "true"; if(isFixedNav) { var navMenu = $('#site-navigation'); var navMenuTop = navMenu.position().top - navMenu.height(); var scrolled = $(window).scrollTop(); $(window).bind('scroll', function() { //console.log($(window).scrollTop()); if ($(window).scrollTop() > navMenuTop ) { navMenu.addClass('fixed'); // user is scrolling top : show fixed menu if(scrolled > $(window).scrollTop()) { navMenu.stop(true,true).slideDown(100); } else { navMenu.stop(true,true).slideUp(100); $('.header-search').hide(); } } else { navMenu.removeClass('fixed'); } scrolled = $(window).scrollTop(); }); } //**********************************replace it with this;
//********************************** // FIXED NAV MENU var isFixedNav = $('html').attr("data-fixed-nav") == "true"; if(isFixedNav) { var navMenu = $('#site-navigation'); var navMenuTop = navMenu.position().top - navMenu.height(); var scrolled = $(window).scrollTop(); $(window).bind('scroll', function() { //console.log($(window).scrollTop()); if ($(window).scrollTop() > navMenuTop ) { navMenu.addClass('fixed'); // user is scrolling top : show fixed menu navMenu.show(); } else { navMenu.removeClass('fixed'); } scrolled = $(window).scrollTop(); }); } //**********************************this is weird, this issue doesn’t occur on our side, you can try;
– download and install a fresh copy of the theme and check again.
That’s a nice idea. I will have that in mind for a next update. Thanks.
this is weird, i just tested your characters and looks fine on my side, viewed on gmail. You can try;
– check the same mail on the desktop or a different mail client.
– download and install a fresh copy of the template and try again.for any additional scripts/plugins you have added to portfolio single pages, you need to call your custom functions each time an ajax request is completed, to do this, edit
js/main.jsand find line : 465;// wait for images to be loaded p.imagesLoaded(function() { //your custom function here : $(".twentytwenty").twentytwenty();Hi, try this custom css code;
.one-page-layout .flexslider { max-width: 740px; margin: 0 auto 4em auto; }Hi, can you provide your url to check what’s wrong.
i see your bio page is fine. But you can try to wrap the full width content at above with a full width column
span12.Hi, i just checked your site on chrome 34 / win 7 in various resolutions. Portfolio looks good. What is your browser / os version ?
Hi, they are constructed with bootstrap grid columns. You can make them 2 columns by changing columns classes and align them center using bootstrap offset classes. For more information using bootstrap grid system please check the link below;
Hi, i just tested our contact form with foreign characters and they look fine on my side. Which characters do you have problem with?
try this one;
.format-quote blockquote { font-size: 2em; }1-) you can play with the values if you are not satisfied with the results, such as;
.site-header hgroup { padding-bottom: 0em; }2-) try also adding this;
.single .entry-meta { margin-top: 0em; }Hi, you can’t delete the hashtags, they are required for the page to work properly. Also can you provide your url to see what’s wrong.
i can see the slider working properly on your site. Does your problem persist?
what do you mean by header 3 ? also can you provide your url.