Forum Replies Created
-
in reply to: 2012 Version of Bootstrap
Hello,
Sorry but there is not scheduled any bootstrap update just yet.
Best regards!
in reply to: Equal Height option missing from Visual ComposerHello,
The “Equal Height” option has been removed from theme. To add it back, go to file vc_templates/vc_row.php and find these lines:
/** * Shortcode attributes * @var $atts * @var $type='in_container' * @var $bg_image * @var $bg_position * @var $bg_repeatAdd this line in the list:
* @var $equal_height
Then go to file includes/core/codeless_elements.php and find this line:
vc_remove_param("vc_row", "equal_height");
Replace with this://vc_remove_param("vc_row", "equal_height");
Save changes. Refresh pages and recreate the row elements.Best regards!
in reply to: Logo "dropping" under the header barHello,
Please add this css into your custom css box:
#logo img { top: 35% !important; }Let us know.
Best regards!
in reply to: Codeless Slider – Center videoHello,
Can you please check them again? I can’t login(screenshot).
What dimensions do you want these posts to have?
Let us know.Best regards!
in reply to: custom sidebar for PostsHello,
Sorry but this is not possible from theme options. Editing code to achieve this is time consuming and it’s not included in support service.
You can suggest us new features here.Best regards!
in reply to: The content of my website is in the leftHello,
You can download the latest theme version from your Envato account. Just login and download theme files like the first time. Only the installation file is enough. Unzip the file and uppload in your wp-content/themes folder in server (access it either from a ftp account or from cpanel, it’s the same), only specular theme folder. By uploading theme files directly from the server you have the possibility to save the previous theme version as a backup. Rename your old theme copy and then upload the new version.
After this, go to your WordPress dashboard, Appearance > Themes. You will see both themes installed there. Activate the new one.
Let us know if you need further help.Best regards!
Hello,
Which images did you edit the dimensions? What dimensions did you set? I see the original images size’s are 600x600px. You should set the values that keep the image as close to the original but enough to fit the page’s layout.
Please change the image size to the best option for the images sizes you have. Upload them again. Then if the row still has some spacing, just add the custom css i gave you in my last reply. Edit the value to your need.
Or just let us know and i will fix it for you. But first you need to change the images sizes back.
Let us know for anything.Best regards!
Hello,
Please fill in the necessary information on your extra information fields of your profile data. So we can give it a closer look. I can’t check all types of media you are using, with these much access.
Read this article for more information.
Best regards!
in reply to: Image protectionHello,
This is not possible by theme options. You should find some other third party plugin to do it.
Best regards!
in reply to: different menu for mobile devicesHello,
It is not possible to use two different menu’s in one site. However you can make these adaptions using custom css. You can add Media Queries and choose to hide them on desktop screen widths. Inspect the menu that you want to hide look for the unique menu
liid. Add this css:@media only screen and (min-width: 1024px) { /* Add your Desktop Styles here */ #menu-item-755 { display: none; } }This will hide the menu on screens with minimum of 1024px resolution.
Please know that this is a customization not included in our support. Please read more regarding it here.
Best regards!
in reply to: Visual composer content from row 1/3 under 2/3Hello,
Glad to know there is no issue here. Thanks for letting us know.
Best regards!
in reply to: Menu not displaying correctly on mobileHello,
This is not really an issue. This is how the mobile menu is designed. The sub-menus are set to show up all the time but the hierarchy is displayed by setting them under the parent item, with some padding. If you want to increase the padding in order to make the hierarchy more visible, i suggest you add this code into your custom css box:
.menu-small ul.menu > li > ul > li > a { padding-left: 20% !important; }To change the font size and color, please add this code:
.menu-small ul li a { color: rgba(0, 0, 0, 0.58) !important; font-size: 13px !important; }Result screenshot. Edit values to your wish.
Best regards!
in reply to: header and logo size issuesHello,
I don’t see any problem in your site. I was able to edit and save logo height value. Please see screenshot. The same with header height.
You do have made a mistake though. You had pasted html code in the Custom Css box in your General Options. That is for css code only. Adding other code will result in errors in your site. I have commented it out for now.Also i edited the page header height in General Options > Header Options > Default Page Header from 530px to 80px. The changes were successfully made. But the image you have set for it’s background can not be found. That’s why is not displaying anything. If the image does exists in that location, i suggest you to check it’s access rights.
Let us know.
Best regards!
in reply to: Specular social widgetHello,
Please edit the file specular\includes\widgets\codeless_socialwidget.php.
Find the social icons and add
target="_blank"
like thisecho '<li class="facebook"><a href="'.esc_url($cl_redata['facebook']).'" target="_blank"><i class="icon-facebook"></i></a></li>';Best regards!