1303 comments found.
Hi,
Can we change the word “Skills” in Portfolio items to “Projects” or “Specialities” please?
Can we add another section in the Single Portfolio items page under “Skills” to “Projects” please?
Thanks,
Ian
Hi,
1. All static words in this theme are included in the POT file. You can edit any words by using the POEdit https://poedit.net/ as when you translate the theme.
In the latest update of the documentation, we provided the instructions on how to translate the theme, please download the new update in the Downloads tab on ThemeForest, choose “All files & documentation”. It’s on the Translations section in our documentation.
Also, you can edit or translate it by using Loco Translate plugin: https://wordpress.org/plugins/loco-translate/ Please install and activate your child theme and edit the PO file in the child theme instead.
2. Sure, you can add Custom Description, this allows you to add custom section with custom Title and Description. When you add/edit the portfolio post, you will see the Custom Description field below Client Information section. You can set the Title to “Projects” and set the Description field as you please.
Can we alter the code without using plugins which slow the site down please?
If you edit the code in the theme directly, you won’t be able to update the theme anymore because your changes will be lost.
You should edit the PO file as I provided in previous comments instead. It’s the same way as when you translate the theme.
You can follow the instructions in our documentation on how to translate the theme to change any text in the theme.
However, this way will change the text in the front end but it’s still displaying Skills in the back end.
Hi I’m Fabrizia This is my purchase code: 69870c7f-6f95-4446-ac36-55b9c04118d3
I have a problem with overlap portfolio. It’s a few days that when I click on my items, even if their are visible in the dashboard, what appears in the “page not found”. all of them. And when was still working, in the page of the single portfolio item, I couldn’t see the “related projects”, even if in the theme option it was activated.
I have already installed your theme updates but the problem is still there.
Here is the website: http://www.evolvere-abitando.com/wp-admin/ Username: fabrizia.off@gmail.com Password: Sicher_080582The website is still under construction, and there is only one portfolio item ready. the others are still demo.
Can you check please? Thanks Fabrizia
Hi,
This is a permalink caching issue, you can easily fix it by navigating to Settings -> Permalinks, select Post name then Save changes to update and refresh the permalinks settings. I just updated it for you so it’s now working fine.
Regarding the Related Projects on the portfolio single post, it displays the related projects by Portfolio Tags, you will need to set tags for your portfolio posts so it will display the posts with the same tags in the related projects list.
Unfortunately, in our recent updates the demo importer didn’t import tags of portfolio posts so you will need to set them manually. The easiest way to solve this, you should edit your portfolio posts in Portfolios list, click on Quick Edit on each portfolio item, then add the tags into Portfolio Tags field in the right hand side.
Also, if you have the latest update of the theme, you can remove all portfolio posts from your site and import them from Theme Options -> Home to receive new portfolio posts with all categories, skills and tags. Please follow this:
1. Deactivate the Overlap Demo Content plugin then delete it from your site.
2. Install and activate the new update of this plugin that is included in the latest update of the theme.
3. Go to Theme Options -> Home, select only Portfolios option, click on Import button.
FYI, all posts in this page are public, please do not post your site credentials here. You should PM me in the contact form: https://themeforest.net/user/wyde#contact
We’re trying to register new local fonts. I know you’ve used Redux in your build but haven’t been able to locate the config file for Redux with the typography array.
Redux support says this is a workaround to add local fonts into the typography options: https://docs.reduxframework.com/core/advanced/enabling-typography-preview-for-local-fonts/
Right now we have it working through a child theme and CSS but putting it into the Redux options seems like it would be the best solution. Any information you can share here to help us?
As seen on Redux page you provided, this is for the theme creator because you couldn’t edit or override it via child theme but will need to edit directly in the theme config file.
Unfortunately, if you edit this file, your changes will be lost when you update the theme. It’s not recommended because you couldn’t update the theme anymore since you edited it.
However, if you’d like to edit it, you will need to add new parameters to the typography configurations directly in “wp-content/themes/overlap/admin/class-theme-options.php”. You will see the code as below when you edit that file.
array(
'id' => 'font_body',
'type' => 'typography',
'title' => esc_html__('Body', 'overlap'),
'subtitle' => esc_html__('Font options for main body text.', 'overlap'),
'google' => true,
'font-style' => false,
'line-height' => false,
'all_styles' => true,
'letter-spacing'=> true,
'font-backup' => true,
'ext-font-css' => get_stylesheet_directory_uri() .'/style.css', // the URL of style.css in your child theme.
'units' => 'px',
'output' => array('body'),
'default' => array(
'google' => true,
'font-family' => 'Lato',
'font-size' => '15px',
'font-backup' => "Arial, Helvetica, sans-serif"
),
'preview' => array('text' => 'Body Text <br /> 1234567890 <br /> ABCDEFGHIJKLMNOPQRSTUVWXYZ <br /> abcdefghijklmnopqrstuvwxyz'),
)
You have to insert 2 parameters into the code as below:
array(
'id' => 'font_body',
'type' => 'typography',
'title' => esc_html__('Body', 'overlap'),
'subtitle' => esc_html__('Font options for main body text.', 'overlap'),
'google' => true,
'font-style' => false,
'line-height' => false,
'all_styles' => true,
'letter-spacing'=> true,
'font-backup' => true,
'fonts' => array(
"Arial, Helvetica, sans-serif" => "Arial, Helvetica, sans-serif",
"'Arial Black', Gadget, sans-serif" => "'Arial Black', Gadget, sans-serif",
"'Bookman Old Style', serif" => "'Bookman Old Style', serif",
"'Comic Sans MS', cursive" => "'Comic Sans MS', cursive",
"Courier, monospace" => "Courier, monospace",
"Garamond, serif" => "Garamond, serif",
"Georgia, serif" => "Georgia, serif",
"Impact, Charcoal, sans-serif" => "Impact, Charcoal, sans-serif",
"'Lucida Console', Monaco, monospace" => "'Lucida Console', Monaco, monospace",
"'Lucida Sans Unicode', 'Lucida Grande', sans-serif" => "'Lucida Sans Unicode', 'Lucida Grande', sans-serif",
"'MS Sans Serif', Geneva, sans-serif" => "'MS Sans Serif', Geneva, sans-serif",
"'MS Serif', 'New York', sans-serif" => "'MS Serif', 'New York', sans-serif",
"'Palatino Linotype', 'Book Antiqua', Palatino, serif" => "'Palatino Linotype', 'Book Antiqua', Palatino, serif",
"Tahoma,Geneva, sans-serif" => "Tahoma, Geneva, sans-serif",
"'Times New Roman', Times,serif" => "'Times New Roman', Times, serif",
"'Trebuchet MS', Helvetica, sans-serif" => "'Trebuchet MS', Helvetica, sans-serif",
"Verdana, Geneva, sans-serif" => "Verdana, Geneva, sans-serif",
"Your Custom Font, sans-serif" => "YourFontName, sans-serif", // Your Custom Font
),
'ext-font-css' => get_stylesheet_directory_uri() .'/style.css', // the URL of style.css in your child theme.
'units' => 'px',
'output' => array('body'),
'default' => array(
'google' => true,
'font-family' => 'Lato',
'font-size' => '15px',
'font-backup' => "Arial, Helvetica, sans-serif"
),
'preview' => array('text' => 'Body Text <br /> 1234567890 <br /> ABCDEFGHIJKLMNOPQRSTUVWXYZ <br /> abcdefghijklmnopqrstuvwxyz'),
)
The above code will add your custom font to the Body section, if you’d llike to add it to other sections in the Typography Options, you will need to edit the code for other sections too.
Hi
I wanted to ask if its possible for Buttons to have drop down menu’s.
Also, how would it be possible to sync a hover over a menu option with the change of a slideshow or slider image.
Is it possible to get the code.
Thanks
Hi,
Unfortunately, there is no Dropdown Button element in this theme and the Button element doesn’t support downdown menu.
You will need to install the 3rd party plugin or insert custom HTML to your page to create it like below:
1. Add a Raw HTML element to the page. 2. Put the HTML code like the sample code below to create dropdown button:
<select name="dropdown01" onchange="location.href=this.value;"> <option value="http://www.yoursite.com/page1">Page 1</option> <option value="http://www.yoursite.com/page2">Page 2</option> <option value="http://www.yoursite.com/page3">Page 3</option> </select>
Regarding the slider question, the Slider Revolution allows you to create navigation or tab menu to control the slider. However, you will need to click on a menu to play the slider, it doesn’t support hover event. Go to this page -> https://revolution.themepunch.com/free-slider-exchange/#esg-grid-2-1
In the Filters, select “Menu Navigation” or “Tabs” to see all demo sliders with navigations. You can download those sliders to your computer and import them to your website in Slider Revolution page to see how to setting up the slider.
Hi,
I’m using the personal portfolio demo – and I was wondering how I get this layout, with the little line from the text to the image (see link below).
http://www.whiteradishevents.co.uk/wp-content/uploads/2016/11/1.jpgAlso, at the bottom of each page it has the angular black box. I’d like the smooth block – as in the link below.
http://www.whiteradishevents.co.uk/wp-content/uploads/2016/11/2.jpgThanks.
Hi,
1. It’s a Heading element, when you set the “Style” option to “Theme Default”, you will have the line with the text.
It’s easier if you create that layout with the shortcode.
Here is the code to create that layout:
[vc_row padding_size="no-padding" parallax="parallax" bg_image_url="http://wydethemes.com/overlap/wp-content/uploads/2015/09/overlap-bg-005-2-150x150.jpg" background_image="4315"][vc_column width="1/3" offset="vc_hidden-sm vc_hidden-xs"][/vc_column][vc_column overlap="bottom" overlap_distance="100px" overlap_index="50" width="2/3"][vc_row_inner background_color="#ffffff" css=".vc_custom_1445753439968{padding-top: 30px !important;padding-right: 15px !important;padding-bottom: 30px !important;padding-left: 15px !important;}"][vc_column_inner width="1/2"][vc_single_image alignment="center" image="3069"][/vc_column_inner][vc_column_inner overlap="right" overlap_distance="0" overlap_index="50" width="1/2"][wyde_heading style="6" text_align="left" title="We Work with Passion" subheading="Lorem ipsum dolor"][vc_empty_space height="20px"][vc_column_text]
<p style="text-align: justify;">Morbi eros lorem, imperdiet a dictum ac, consectetur vel lacus. Aenean gravida posuere elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Duis lacinia et urna sit amet congue. Pellentesque vel leo a eros sollicitudin varius a ac lacus. Aliquam viverra laoreet aliquet. Sed eu odio magna. Aliquam non lectus egestas, laoreet felis quis, sagittis lacus. Fusce maximus laoreet tincidunt. Nulla hendrerit felis nec magna condimentum congue et feugiat risus. Etiam vel elit eget nibh rutrum efficitur quis id eros. <a href="#">Learn more »</a></p>
[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]
Edit your page, click on Classic Mode, you will see the Text Editor, then select Text mode and insert the code above into the first line of the Text Editor. Then switch back to the Backend Editor to edit the content with page builder.
2. It’s a Section Separator element, edit that Section Separator element, change the Style option to “Wave”, you will have the smooth block as the wave style.
Hello I have a question on how to update the theme I have it installed already on my site and wanted to know if there was an option automatic update?
Hello,
We have provided both manual and auto update the theme in our documentation. You can install Envato Market plugin to update the theme on your WordPress admin page. With this plugin, you can easily update the theme via your WordPress admin with just a click.
Please follow the instructions on how to setup this plugin in our documentation. If you couldn’t find the documentation, you can download it in your Downloads tab on ThemeForest, choose “All files & documentation”, then extract the zip file.
Hi Is the theme Overlap compatible with Polylang? Anyone has experience with this? Thanx
Hi,
WPML is the only one multi-language plugin that we have tried and this theme is compatible with it.
I’m not sure about Polylang but I suppose it will work with the theme too. If you’d like you can try it.
Hello, I am using your template to create a website for a client through Wordpress. The example being the home page of the “Creative Studio” layout, where the text overlaps the photos towards the middle of the page. I can recreate the idea by using Adobe Suite, and making the entire section a clickable photo, but I can’t seem to make it look like the template. When in Wordpress, It will not let me put a photo beside the text, much less have a title overlapping the photo. Also, the client would like to incorporate “Square” while selling their products with the template. I saw that I can set up Paypal but I couldn’t find how to implement Square or if that was even an option. One more question. I can’t get my photo on the home page slider to look the same as the one in the Creative Studio layout. The photo doesn’t stay stationary while scrolling like the example template does.
If you could help me in any way, it would be greatly appreciated.
Thank you! Kara Kinsey
Hello,
1. We add 2 columns in a row, then add a Single Image element into the left column and Custom Heading element and Text Block element into the right column to display the text. And then enable Overlap option for the column in the right side so it overlaps the image in the left column.
We would recommend you to import demo content, you will get all predefined pages so you can easily edit the page to replace the images and text with yours.
2. This theme uses WooCommerce plugin to build the shop page. In order to integrate Square with WooCommerce, you will need to install an extension called “WooCommerce Square” here -> https://woocommerce.com/products/square/
3. It’s a Parallax feature, you have to enable Parallax settings in the Main Background tab when you edit the slider, see below image:
Also, you can import demo slider to see how to settings the slider. It’s easier if you edit from the demo slider, you don’t need to create it from scratch but just replace the images and text with yours.
You can import the sample sliders in Theme Options -> Home, select only Sliders option, then click on a demo icon to import it.
When you download the full package in the Downloads tab on ThemeForest, after you extract the zip file, you will see the demo content plugin called “overlap-demo-content.zip”, please follow the instructions in our documentation on how to use it.
When I import the Demo Content, the Pages and the Menus don’t import for some reason. Is there a way that I can fix that?
Sounds like there was an error while importing those contents.
Please import them one by one to see if it works.
In Theme Options -> Home, select only Pages then click on Import button to import it. Once it has been completed, then select only Menus to import.
If this doesn’t work, it might be because your host has the PHP configuration limits that are set too low to complete the process. You should increase those limits to the minimum values as we provided in our documentation.
If it still doesn’t work, please PM me your site URL and admin login credentials -> https://themeforest.net/user/wyde#contact
Hello, I am having trouble with the Accordion and Tabs addons. The accordion is not working, see example at: https://www.avefor.com/academia-de-baeza/ the plus icons won’t open.. any fast reply appreciated. Regards
Hello,
Try to update the theme to see if it works because it’s working fine on our demos.
I have added custom css and scripts (fb and ga) into the theme. Before updating the theme, should I add the child theme, activate it and then update the main theme or how is it? Thanks
Sure, if you have edited any files in the theme, you should move your changes to the child theme instead because when you update the theme you will need to replace the whole theme folder.
Then download the new update in your Downloads tab on ThemeForest, choose “All files & documentation” to download. Extract the zip file and follow the instructions in our documentation on how to update the theme.
Thank you very much, Wyde!! Regards
Hello again. I can’t update the theme and install the child theme: I have done that in my local server and lots of customisations, widgets, styles have been lost. I just need to replace the new working files from the Overlap theme that fix the shortcodes errors. Should I override the new theme files (js) into our old Overlap theme? please confirm this is ok. Thanks
Hello,
When you update the theme, you have to update the whole theme folder, you couldn’t replace some files to fix it.
We do not recommend you to edit any files in the theme directly because your changes will be lost when you update the theme.
If you need to edit the theme, please use the child theme.
If you made changes on the theme, you will need to move your changes to the child theme instead so you can update the theme without losing changes.
Upload overlap-child-theme.zip to install and activate it.
Then you can add custom CSS into style.css and add custom PHP functions into functions.php in your child theme.
Thank you Wyde, I will follow your recommendations and steps. Best Regards.
Hello good morning from Germany.
I am looking into your Overlap theme and have one pre-sales question: is it possible to eleminate the filename of a picture if you click on the picture (e.g in a blog) – the lightbox shows the file name above…
Thanks for your answer. Hermann
Hello,
Sure, you can hide the image name from the lightbox in Theme Options panel so it displays the image without the name.
Hey,
I’m having trouble with my error404 site, how can I get rid of the overlap logo in the menu bar? see the page here: thomaskurer.ch
Thanks a lot!
Hi,
This is a bug of the dark logo settings, this issue has been fixed in the latest update of the theme. Please update your theme to fix it and it will also get rid of the overlap logo.
where can I update the theme? I cannot find it anywhere in the backend of wordpress.
We have provided both manual and auto update the theme in our documentation. You can update the theme on your WordPress admin by using Envato Market plugin, please follow the instructions in our documentation on how to setup this plugin.
I have a question. My featured images / gallery images are not being displayed correctly on the portfolio. Some images are and some images aren’t and the dimensions are the same. Can you let me know why? Thank you!
Please make sure your images are larger than 960×960px so they will be cropped to fit properly within the portfolio layout.
If it doesn’t work, please PM me your site URL -> https://themeforest.net/user/wyde#contact
Thank you. I’ll try that.
Can you also tell me how to remove the Menu Icon from the Mobile? I want to disable all menu’s temporarily.
Actually you can hide all menu by disabling the Header option.
Edit the page with Backend Editor, scroll down to the Overlap Options at the bottom of the page, select the Header tab, change the Header option to Hide. This will hide the header on both desktop and mobile.
However, if you’d like to hide it only on mobile, please add the custom CSS into Theme Options -> Advanced -> Head Content as below:
<style type="text/css">
.mobile-nav-icon{
display: none!important;
}
</style>
this plugin never uploaded: Slider Revolution. I have tried to install multiple times and have been unsucessful. Any idea what the problem might be. I am unable to work on the front home page as a result. Presently my home page goes straight to the “About us” page. Please help! Thanks!
Is there any error message while installing the Slider Revolution plugin?
Try to open your cPanel File Manager, go to “wp-content/plugins/”. If you have a folder named “revslider”, please delete it. Then try to install this plugin on your WordPress dashboard again.
If it doesn’t work, please PM me your site URL and admin login credentials -> https://themeforest.net/user/wyde#contact
hi! how’s your day?
i want to ask, how can i set the image on mobile website, so i can set it up to normally like this
.................................................image…........................................................... ..................................................text…............................................................. ................................................image…............................................................ ..................................................text….............................................................
not like mine www.dewamarketing.co on mobile
............................................................text…................................................................ ...........................................................image….............................................................. ...........................................................image….............................................................. ............................................................text…................................................................ ............................................................text…................................................................
thankksss
Hi,
Unfortunately, this is the standard of HTML element display order. All browsers always display the elements from Left to Right and Top to Bottom.
So if you have:
Text - Image Image - Text
On mobile, they will always be:
Text Image Image Text
However, there are 2 ways to work around this:
1. Create 2 set of content, one to show on desktop and another one on mobile. When you edit the column settings, you will see the Responsive Options that allows you to hide the column on each screen.
2. Add custom CSS to set the order for specific column, this way sounds to be better since you don’t need to create a new set of the content:
1) Add CSS below to Theme Options -> Advanced -> Head Content:
<style type="text/css">
@media only screen and (max-width: 599px) {
.last-on-mobile{
order: 1;
}
}
</style>
2) Edit the page, then edit the columns that you want them to be the last order, and put ‘last-on-mobile’ into the Extra CSS Class field.
For example:
On your home page, you should edit the first column of sections “Gain Real Followers”, “Support” and “Siapa” one by one. Then set the Extra CSS Class field in the column settings to last-on-mobile. So those columns will be display in the last order instead of first order on mobile.
it doesn’t work bro.
can you check what i did on my wp account? i already gave you my access. i tried point 2 to post ‘gain real customers’. but doesn’t work 
Hi,
As I mentioned in previous comment, you will need to edit the column to add an extra class last-on-mobile to the Extra CSS Class field. But looks like you edited the row and set it for the row instead so it didn’t work.
I just did it for you and it’s now working fine.
hi, sorry for late reply i was take a holiday 4 days ago..
i see my website, and its good. but i need to place an image above the text. so i need the first image and then text below the image.
can you work it out for me? because i dont understand about css etc.. i really appreciate your work, thank you very much
Sure, I just updated it, please take a look again.
whoaa, thank you so much wyde, i really appreciate your good work! i will recomended this theme to my friends!
Sure, it’s my pleasure 
Hi Wyde,
Very nice theme here and I’m looking forward to implementation of it. I’m having a problem after I import the demo content for the create agency option. The import process works fine. However, I don’t have the proper “home”page after the import that reflects as the demo content does. I read in the forums how there were a few other users that had overwriting issues from old version; which may be my problem, but not sure.
Appreciate the help!
Hi,
Actually, the overwriting issues you find in the forums, it’s not a theme issue. After I investigate the issue, it’s because the home page slug issue.
However, if you are using the Overlap theme 1.2.1 or above, you can import only Settings to reset the theme settings and home page settings as the demo does.
Go to Theme Options -> Home, select only Settings option then click on a Creative Agency icon to import it again.
If it still doesn’t work, please PM me your site URL and admin login credentials -> https://themeforest.net/user/wyde#contact
Just replied directly to your email!
Hi,
I’ve purchased 6ee9ea31-37e4-4505-8998-1443c47148a0 – 5 Jul 2016 REGULAR LICENSE
I’m having some difficulty’s with Revolution Slider. I can’t active and therefore can’t update Revolution Slider and Revolution Slider doesn’t work correctly on Internet Explorer.
Can you help me?
Thanks in advance.
Hi,
You can normally use this plugin without registering a purchase code, this plugin was packed with the theme and it needs to be updated by the theme creator.
You have to update the theme to get the new update of this plugin.
After you update the theme, if there is a new update available for bundled plugins, you will see a notification message to update it.
Please see more details on how to uodate the bundled plugins in our documentation.
Regarding the problem on Internet Explorer, please let me know what current version of the Internet Explorer you are using.
Thanks for your reply. I will update the theme. I’m currently using IE11. On Firefox, Safari etc. i’m not experiencing this problem.
Where can i find the latest update for this theme?
Sorry for the delayed response!
You can update the theme manually by downloading the new update from Downloads tab on ThemeForest, or update it via your WordPress dashboard by using Envato Market plugin.
The instructions for both manual and auto update are all included in our documentation. If you couldn’t find the documentation, please go to your Downloads tab on ThemeForest, click on the Download button on the Overlap theme, then choose “All files & documentation”.
Once you download the file, please extract the zip file to see all package contents.
I’ve updated the theme but still having problems with Revolution Slider on IE11. http://inbalansmedia.nl/horeca
On Safari, Google Chrome etc. working fine.
Try to turn on the option “Disable Force FullWidth” in slider settings page to see if it works -> https://cdntphome-themepunchgbr.netdna-ssl.com/wp-content/uploads/2015/07/advanced-options-21.jpg
Also, I see the transition is not smooth on IE11. This is a limitation of ken burn effect on IE11 and Edge.
Try to remove the below code from wp-content/theme/overlap/css/main.css>
/** Force hardware acceleration for smooth animation **/
.no-touch,
.no-touch * {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
Hi there, thanks for your quick response. “Disable Force FullWidth” didn’t help 
This is a limitation of IE, it couldn’t play ken burns effect smoothly as other browsers. You will need to change the ken burns settings by following the below steps.
1. Edit your slider in Slider Revolution page.
2. Edit slides in the slider one by one, select the Main Background tab and change the Ken Burns settings as the below image:
Also, you should remove the code as I provided in previous comment from “wp-content/themes/overlap/css/main.css” so it will work more smoothly.
After remove that code, please press Ctrl + F5 to refresh the browser cache.
If it still doesn’t work, please PM me your site URL and admin login credentials -> https://themeforest.net/user/wyde#contact
The buttons work now in IE11! 
Only now.. After i’ve removed the code the menu on the site shows weird codes like “E82C” and “E844”
www.inbalansmedia.nl
Second: When I load the page with Revolution Slider www.inbalansmedia.nl/horeca or www.inbalansmedia.nl/sportschool the page get stuck.
When I refresh the page will load correctly.
What the editor you are using to edit the codes? Seems like the editor removes all \ (backslash) from your codes so it doesn’t work correctly.
You should edit the code on your cPanel File Manager. Or PM me your email so I can send you the new version of that CSS file -> https://themeforest.net/user/wyde#contact
Also, the page gets stuck because the slider waits until your Cookie Notice plugin was loaded then it starts playing the slider.
Try to deactivate your Cookie plugin and other plugins to see if it works.
Hi there, great theme, I really like it. However, I would ver much like to be able to change the max-width of the boxed layout, how do I accomplish that? Oh, and how do I add custom social media links? I need a link to Goodreads.
Thanks in advance
Hi there,
It’s not recommended to change the max-width of the Boxed layout because this layout is for the default page layout i.e. blog page, blog single post page, shopping cart and checkout page. It will break those pages when you change the max-width of this layout.
However, if you’d like you can add the below CSS to Theme Options -> Advanced -> Head Content to change the max-width of the Boxed layout:
<style type="text/css">
@media only screen and (min-width: 1400px){
.container, .w-section > .row {
max-width: 1200px;
}
}
</style>
Change from 1200px to the new one.
I am having an issue where my portfolio is not breaking into columns like they are supposed to. It is stacking in a single column on the left side. How can I fix this?
I am using Apollo, Grid With Space, Columns 2, 16 Post Count, Hide Pagenation, Hide Filter, No Animation, no custom CSS
Thank you for help!
We have never seen this issue before. Maybe there was a plugin conflict. If you have other plugins installed, try to deactivate them all to see if it works.
If it doesn’t work, please PM me your portfolio page URL? So I can inspect the code to find if there is something wrong. Send it through the contact form here -> https://themeforest.net/user/wyde#contact
Sent
Thank you for your prompt response.
Just replied directly to your email! Please take a look my screenshot, everything is working fine on my end.
Hello, Since the last update ( version 22 september), I don’t see my own logo anymore but the logo of Overlap. When I go to the Theme options I even do not see a section anymore where I can upload my logo?? Is it supposed to be in Theme options> Navigation or General? Its not there?
I hope you can help – thanks!
Hello,
In the recent updates, we add new option to disable/enable logo.
In Theme Options -> Navigation -> Top Navigation, click on a Header Logo option to enable/disable the logo settings.
Hi Again, another question: I have entered the following into themeoptions > social media > skype:
skype:myskypename?call
Is it supposed to work like with this kind of a link ? Right now when I click on the skype icon it loads the page I am currently watching and does not lead to skype or any action.
Do I have to fill in something else?
I appreciate your help -thank you!
Hi,
Your Skype URL in Theme Options -> Social Media is now correct.
However, in order to enable Skype call on your site, you have to add custom PHP into functions.php in your child theme as below:
1. Install and activate overlap-child-theme.zip.
2. Go to Appearance -> Editor to edit Overlap Child theme.
3. Add the below code into Theme Functions (functions.php):
//Add Skype protocol
function overlap_add_skype_protocol( $protocols ){
$protocols[] = 'skype';
return $protocols;
}
add_filter( 'kses_allowed_protocols' , 'overlap_add_skype_protocol' );
Thank you – where exactly in the functions.php code do I have to place it. I tried it and obviously placed it on the wrong line, because the site / CMS was unreachable afterwards- I had to reset the site via backup on FTP.
Thanks in advance.
You should add it at the bottom of the functions.php file in your child theme.
Please make sure you add the correct code, please do not copy the code from your email but copy from the comment page directly.
Great it works now- thanks!