Forum Replies Created
-
in reply to: Portfolio image size on ane. mobile pho
Hello,
@harryhayes,
Sorry for the late reply.
Please add these lines into your custom css box:@media (max-width: 767px){ .portfolio-item img { width: 34%;} .portfolio-item.chrome .overlay span { width: 34%; } .portfolio-item.chrome .show_text h5 { text-align: left;} .portfolio-item.chrome .show_text {width: 50% !important;} }Let us know.
Best regards!
in reply to: Row padding & marginsHello,
@nico_draaisma,
What version of the theme do you have? Did you made any updates recently? Did you installed any third party plugins? If you send us your wp credentials in a private reply, we can check it.best regards!
in reply to: How do I open and play video in a modal dialog box?Hello,
Sorry for the late reply.
Please use youtube links. The link you have is not supported.Best regards!
in reply to: Breadcrumb trail – Use menu name instead of titleHello,
Sorry but this is not possible.
Best regards!
in reply to: Font Size in ElementsHello,
Sorry for the late reply.
To change the Service Circle icon element font size, please go to Typography Options and edit the Heading 4 Font style.Best regards!
in reply to: FAQHello,
Sorry for the late reply.
In Visual Composer select the faq element. See screenshot for the General Options > Page Header Styles. If you have imported the dummy data, you do have already created this page as ‘FAQ’.Best regards!
in reply to: Problems with the menu and wordpress barHello,
Sorry for the late reply.
I can’t see the images you uploaded. However, can you please send us your wp credentials in a private reply? So we can give it a closer look.Best regards!
in reply to: Issues with WPMLHello,
Sorry for the late reply.
I am glad that is ok now. Do you mind sharing your solution, so other forum members that may encounter this problem, can find a helpful topic here.Thanks,
Best regards!in reply to: Permalinks change by itselfHello,
Sorry for the late reply.
Can you please be more clear? I don’t understand the issue. Can you show us a link where this is happening?Best regards!
in reply to: Modify Child Widget ShortcodeHello,
Sorry for the late reply.
Please go to file specular\includes\register\register_shortcodes.php and find these lines:$output .= '<div class="contact_information">'; if(!empty($addr)): $output .= '<dl class="item dl-horizontal addr">'; $output .= '<dt><i class="icon-location-arrow"></i></dt>'; $output .= '<dd><span class="title">'.__('Our Locations', 'codeless').'</span><p>'.$addr.'</p></dd>'; $output .= '</dl>';Change here the text and the icons you want to use.
Best regards!
in reply to: Level 3 submenu bugHello,
Please update theme to it’s latest version. To remove the warnings display, please go to wp-config.php file and set debug to false:
define('WP_DEBUG', false);.
Let us know.Best regards!
in reply to: Floating Sidebar moves not correctHello,
Sorry for the late reply.
You should add this code:<?php // Register Script function custom_main_js() { wp_deregister_script( 'specular' ); // This is the handle used by the main theme's functions.php for main.js wp_register_script( 'specular-child', '/wp-content/themes/specular-child/js/main_custom.js', array( 'specular' ), false, false ); // This is the URL to your child theme's custom js file and a handle we've given it wp_enqueue_script( 'specular-child' ); } // Hook into the 'wp_enqueue_scripts' action add_action( 'wp_enqueue_scripts', 'custom_main_js' );into your child’s theme function.php file. Please read here, for more information.
Best regards!
in reply to: Related Portfolio ItemsHello,
Sorry but that is not possible.
Best regards!
in reply to: Portfolio Slideshow Image SizeHello,
Please go to file functions.php in Specular theme folder and find these lines:
function codeless_images_sizes(){ add_image_size( 'port3', 600, 600, true ); add_image_size( 'port3_grayscale', 627, 470, true ); add_image_size( 'port2', 460, 275, true ); add_image_size( 'port2_grayscale', 940, 470, true ); add_image_size( 'port4', 600, 600, true );Here are all sizes of all portfolio/blog types. Edit the dimensions of image at the specific portfolio type you are using, or add a new one if it doesn’t exists. After this, import again the images and run a plugin that recreates thumbnails.
Let us know if you need help.Best regards!
-
This reply was modified 11 years ago by
Mirela.
in reply to: Pagination for Full Blog elementHello,
Yes, just change the : Post numbers : -1 to a positive number. The -1 makes all available items show. If you set it to 12 it will show only 12 items and the pagination for the rest.
Best regards!
-
This reply was modified 11 years ago by