Forum Replies Created
-
in reply to: Problem with centered page header style
Hello,
Please add this code into your custom css box:
.page_header_yes .top_wrapper { padding-top: 100px !important; }We will fix this in the next update.
Best regards!
in reply to: Staff pictures and links to pagesHello,
Please follow the instruction given in this topic: https://support.codeless.co/?topic=staff-bios , to add a new link to the chain of social icons to connect your staff with a custom page.
Best regards!
in reply to: Latest Theme and JSComposer – Animation problemsHello,
GO to column settings -> General -> enable animation, select the animation you want and set the time in ms.
Maybe the animations has gone due to Visual Composer update.
Make sure you are running the latest theme version and the latest Visual Composer version.Best regards!
-
This reply was modified 10 years, 8 months ago by
Ruco.
in reply to: Read more and links in the excerptsHello,
Can you please be more specific? In what element are you using the read more? Please send us a link where are you using it, or a screenshot.
Best regards!
in reply to: Trouble with imagesHello,
The code responsible to register a new image size image is in function
codeless_images_sizes():
add_image_size ( string $name, int $width, int $height, bool|array $crop = false )Cropping behavior for the image size is dependent on the value of $crop:
If
false (default), images will be scaled, not cropped.
If an array in the form of `array( x_crop_position, y_crop_position ):
x_crop_position accepts ‘left’ ‘center’, or ‘right’`.
y_crop_position accepts ‘top’, ‘center’, or ‘bottom’. Images will be cropped to the specified dimensions within the defined crop area.
If true, images will be cropped to the specified dimensions using center positions.Example, if you want to scale the images of blog then find this line:
add_image_size( 'blog', 825, 340, true );
and replace with this:
add_image_size( 'blog', 825, 340, array( 'left', 'top') );Source file: specular/functions.php (line 145)
Best regards!
in reply to: Problems on Mobile DevicesHello,
Thank you for choosing our theme!
1-Please make sure to have enabled the revolution slider to display in mobile. Find the option in Revolution Slider > slider settings > Layout & Visual > Mobile, set it OFF (screenshot)2-I can’t see the images attached, but i assume is a conflict of the menu width, with the top header width in landscape mode.
Please send us your site’s url so we can give a more precise answer for all the other questions.Best regards!
in reply to: Portfolio entries active header problemHello,
I fixed it. I edited this code:
.page_header_yes .top_wrapper{ padding-top: 100px; }in your style.css file.
We will reflect the change in the next update too, so you do not need to worry about later theme updates.Best regards!
in reply to: problem with YOAST SEO pluginHello,
Sorry that is not yet possible.
Best regards!
in reply to: Header – Widgetized AreaHello,
Please go to file tower\includes\register\register_shortcodes.php, find and edit it here.
Best regards!
in reply to: Layer Slider WPHello,
Yes, it does include it. You do not need a purchase code. The theme purchase code is used only to register on this forum. Please install the included Layer slider. You should get a message in your dashboard, requiring you to install plugins. In the required plugin list it is Layer slider too.
We update plugins to their latest version on each theme update. if you wish to update a plugin before the next theme release, then you will have to buy it.Best regards!
in reply to: Specular theme – how to "holder" links (…/#)Hello,
That is not actually a bug. If you add the “https://” before the link, it will interpret it as a real, autonomous link and will send you to that actual link (blank), if you set it up as only ‘#’ (screenshot), it will associate it with the site’s default url.
So “https://#” ->blank link; “#“->default site url;
I hope i was clear enough.
Let us know for anything.Best regards!
in reply to: Staff pictures and links to pagesHello,
Please edit the file specular\vc_templates\staff.php (for single staff element).
Find the lines:$output .= '<div class="featured_img">'; $output .= '<img src="'.esc_url($featured).'" alt="">';Replace with these:
$output .= '<div class="featured_img">'; $output .= '<a href="'.get_permalink().'"><img src="'.esc_url($featured).'" alt=""></a>';Please note that this will wok for the staff > Style -> Simple Centered.
Best regards!
in reply to: Recent Portfolio Element – Media not displayingHello,
Please update theme and visual composer to their latest version. Let us know if the issue persists.
Best regards!
in reply to: AccordionHello,
Please add this code into you custom css bxo:
@media (max-width: 767px){ .page-id-83 .vc_tta-panels { padding-top: 150px; margin-left: -422px; }} @media (max-width: 480px){ .page-id-83 .vc_tta-panels { padding-top: 200px; margin-left: -272px; }}If the issue persists, send us your wp credentials in a private reply. So we can fix them all.
Best regards!
in reply to: AccordionHello,
Sorry for the inconvenience.
Please add this code into your custom css box:
1-For the slideshow in homepage:@media (max-width:767px){ .flexslider .slides > li { margin-right: -96% !important;} }2-For the Tour in Contact page, i don’t see any issue here. Can you please post a screenshot? So i can understand better.
Best regards!
-
This reply was modified 10 years, 8 months ago by