Forum Replies Created
-
in reply to: Page Options – Layout – Sidebar
Hello,
You can set up the position of a sidebar from page’s options or from Layout > Pages Default Layout. The second one will be assign that layout to all pages. The first one, overwrites the Layout option, to the one you chose in the Page’s Options > Overwrite the default post layout.
Best regards!
in reply to: Latest blog post thumbnail linkHello,
Can you please be more clear? What do you need to change to it?
Best regards!
in reply to: header problemHello,
Yes, i gave you this code for it:
.page_header_yes .top_wrapper{ padding-top: 100px; }To have this effect only for portfolio single entries, please edit it to this:
.single-portfolio .page_header_yes .top_wrapper { padding-top: 100px; }Best regards!
Hello,
Yes, you can just upload the js_composer folder into your wp-content/plugins folder, overwriting the current one. It is important to update both the theme and Visual Composer, the order does not matter.
Best regards!
in reply to: Staff carouselHello,
The latest update has set id’s to widgets. So you have to assign again the widgets to the footer. Normally the update affects only the theme/plugins files, not the content or theme settings. It is strange that the menu has changed, however you can set it up at Appearance > Menus.
Let us know if you need further help.Best regards!
in reply to: Mobile Device Layout ProblemsHello,
I added this code:
@media (max-width: 979px){ #logo img { height: 65px !important;} }for the logo in horizontal mode. This is the result.
Let us know if it is what you needed.Best regards!
in reply to: Animation Not Working on MobileHello,
This is strange. Please disable all third party plugins and try again. Let us know if the issue persists.
Best regards!
in reply to: Image Padding on Full-Content RowsHello,
Can you please explain better? Do you want to have them like this: screenshot?
If so, add this code into your custom css box:.wpb_wrapper { padding-left: 16px; }Let us know.
Best regards!
in reply to: Theme My Login or Profile Builder LayoutHello,
I added the code into your custom css box. The previous host apparently didn’t save the changes. It is fixed now, please check.
Let us know for anything.Best regards!
in reply to: Specular Business 4Hello,
To activate one of our demo, you need to first import it’s dummy data.
-Go to Specular > Import/Export (Dummy Data), select the demo you want to use
-Click on ‘Import’. Wait a few seconds and when the import is finished, click ‘Save’ to save all the changes.
-Go to Appearances > Menus, assign a main menu to your site.
-Go to Settings > Readings, set your home page and blog page .
Let us know if you need further support.Best regards!
in reply to: Serious Error – Page Wont Load After Adding Content?Hello,
Please refer to this topic for the back to top button.
The tab/tour elements does not cause any issue or site delay. Please make sure to have the latest Visual Composer plugin installed and try again.
Let us know how it will go.Best regards!
in reply to: New theme update – Visual Composer FIXHello,
@mikelim,
You do not need a licence number to update Visual Composer. Just delete it’s folder (wp-content/plugins/js_composer) and go back to your dashboard. Re-install plugin from wp.
@huguesalbes,
Please reset permalinks first. Let us know if the issue persists.Best regards!
in reply to: Twitter WidgetHello,
Sorry for the late reply.
Please go to file specular\includes\widgets\codeless_twitter.php and find these lines:foreach ($tweets as $message){ $output .='<li><dl class="dl-horizontal"><dt><i class="moon-twitter"></i></dt><dd>'; $output .= '<span class="message">'.$message['text'].'</span>'; $output .= '<span class="date">'.date_i18n( $time_format, $message['created'] + $message['user']['utc_offset']).'</span>'; $output .= '</dd></dl></li>'; }And replace them with this:
foreach ($tweets as $message){ $output .='<li><dl class="dl-horizontal"><dt><img src="'.$message['user']['image'].'"></img><i class="moon-twitter"></i></dt><dd>'; $output .= '<span class="message">'.$message['text'].'</span>'; $output .= '</dd></dl></li>'; }Save and refresh page.
We will edit this in the next update.Best regards!