Forum Replies Created
-
in reply to: Visual Composer is not Loading
Hello,
You need to update Visual Composer too. Follow the instructions in this article.
Best regards!
in reply to: Unable to Edit PagesHello,
Please update theme and Visual Composer to their latest versions. You can download it from your Envato account.
Note: Please do not send login data in a public reply. If you must, then set it as private reply, so only you and support admins can view it.Best regards!
in reply to: slide behind headerHello,
You have selected the “Slider On Top of the Page” option in the home page’s General Options > Slider Options. This moves the menu below the slider and therefore the option “slider below menu” becomes invalid. Just like the option description says: “Cant use with transparent header”.
To have the view of the demo site you pasted in your first reply, you have to have that normal header. And then set up a transparent header for the slider to go at the back.Best regards!
in reply to: WPML + Slider RevolutionHello,
Please send us your wp credentials in a private reply. So we can give it a closer look.
Best regards!
in reply to: Portfolio Categories titleHello,
You do need to update theme as the latest version has some changes made and the latest Visual Composer plugin included. it is compatible with wordpress 4.5.
But what you’re asking here has nothing to do with theme update and is actually not an issue but part of theme default style.
That is not the url, but the slug of portfolio categories.
If you want to change it to the name instead, then go to file include/view/portfolio/loop-grid.php and find this line:foreach ($item_categories as $cat) { $sort_classes .= $cat->slug.' '; }replace with these:
foreach ($item_categories as $cat) { $sort_classes .= $cat->name.' '; }Save file and refresh.
Let us know.Best regards!
in reply to: Translate Customs Fields ValuesHello,
Please check out this article on how to generate strings with wpml.
Let us know for further questions.Best regards!
in reply to: Page titleHello,
Can you please be more clear? What do you want to add?
Let us know.Best regards!
in reply to: slide behind headerHello,
Please send us your wp credentials in a private reply. So we can give a closer look to your configurations and fix it.
Best regards!
in reply to: Update problemHello,
Are you using a child theme? What plugins do you have installed? Can you create a user for us? Post the credentials in a private reply. So we can give ti a closer look.
Best regards!
in reply to: Portfolio Categories not workingHello,
You can remove the changes made for the portfolio from your child theme. So it call out the parent functions. Then try to add the changes one by one and check which one of the changes made (and the files added to child theme) are conflicting with the parent scripts.
I see in this topic of yours, that we made some custom edits to portfolio. I can assure you that these changes do not give any issue made from the parent theme. We tested them out before giving it to you and this does not happen.
Let us know.Best regards!
in reply to: Header H1 Text FadeHello,
Please go to file js/main.js and find function pageHeader(). Inside the function body you will find this line:
var opacity1 = 1 - ( scrollTop / bottom );by decreasing the value ‘1‘, you can speed up the fading process.
Try this for example:
var opacity1 = 0.5 - ( scrollTop / bottom );
Save changes to file.Best regards!
in reply to: full blog element – TITLE DIMENSIONHello,
I just opened your site from an iphone and it was displaying just as described. Please clear cache and try again.
Let us know.Best regards!
in reply to: Problem with installationHello,
Please check your credentials again. I can’t login.
Best regards!
Hello,
Can you please post a link of the site? So we can check it out.
Best regards!
in reply to: Problems with iPad ViewHello,
I can see from inspect element that the custom css has taken over the default one. It is not the same. The columns where “In-Company” section is, are less wide, which creates more padding between text and border.
Edit this code:.latest_blog .no_carousel .blog-item { width: 30%; margin-left: 16px; }to this:
.latest_blog .no_carousel .blog-item { width: 30% !important; margin-left: 16px !important; }I guess i misunderstood you, please add this code inside the
@mediablock, too:.latest_blog .blog-item .content p { margin-right: 16px !important; margin-left: 16px !important; } .services_small .content div {margin-left: 10px !important;}Best regards!