Forum Replies Created
-
in reply to: Font Awesome Icons not showing
Hello,
I edited the code above to this:
.social_icons_sc { width: 18%; padding-left: 0px !important; float: right !important; }The social icons are aligned in the right side now.
Best regards!
in reply to: Issue importing demoHello,
I was able to finish the process of importing dummy data (screenshot) and then i saved the changes. However no pages where to be found. Then i imported them again via ‘WordPress Importer’ and this is the result, screenshot. Your site send them all to trash! If you check the pages in trash you will see there are more than a hundred, due to multiple importing. This is a host issue, so we suggest you contact your host once again. Also restore all the pages you want to have.
Best regards!
in reply to: Social shareHello,
@babishop, please make sure to have made the suggested steps above. If still no luck, you can send us your wp credentials in a private reply, so we can check.Best regards!
in reply to: Blog Post – AUDIO NOT WORKINGHello,
Please paste the audio link directly in text editor.
Best regards!
in reply to: Video in Revolution SliderHello,
What slider are you using? If you can send us your site’s url so we can give a closer look.
Best regards!
in reply to: Testimonials alignmentHello,
Thanks for sharing. I will set this topic as resolved.
Best regards!
in reply to: Add External Links to Media GridHello,
Please refer to this topic: https://support.codeless.co/?topic=hyperlink-for-media regarding it.
Best regards!
in reply to: Bigger Social IconsHello,
I changed social style in widget options, to simple and i added these lines into your custom css box:
footer .inner .widget ul li { background-color: rgb(45, 45, 45); width: 64px !important; height: 64px !important; } footer .footer_social_icons li i { font-size: 28px !important; margin-top: 18px; } footer#footer a, footer#footer .contact_information dd p { color: #E4E4E4 !important; }This is the result.
Best regards!
in reply to: Staff BiosHello,
For the staff, please make the following changes:
-Go to file includes\core\codeless_metaboxes.php , find these lines: https://www.codeshare.io/youn0 and replace with these: https://www.codeshare.io/BaFOv . It will add a new ‘Profile link’ option in staff options. Just like you set the facebook profile link for the staff member, you can add the profile link.
Step 2, go to file vc_templates\staff.php and find this block: https://www.codeshare.io/thpot and replace with this: https://www.codeshare.io/cm0J5 .
Save!
Now, in order to show only the profile link, remove from staff options all other links, except the profile (screenshot -> result)-For the post page, you can make all necessary changes in file includes\view\blog\loop-index.php
Best regards!
-
This reply was modified 11 years, 1 month ago by
Mirela. Reason: link edit
in reply to: Button SizeHello,
Please add these lines into your custom css box:
.btn-bt.default { width: 25%; height: 91px; padding: 31px 38px !important; font-size: 27px; } @media (max-width: 767px){ .btn-bt.default { width: 55%;} }Let me know how it will go.
Best regards!
in reply to: Testimonial Carousel – Not Responsive and Too FastHello,
1- You can change the speed of the testimonial scrolling by editing the file /js/main.js.
Find the lines:function testimonialsCarousel(){ "use strict"; $('.testimonial_carousel').each(function(){ var $self = $(this); $(this).carouFredSel({ auto: true, scroll: { items : 1, fx: 'fade' }, prev : { button : $self.parent('.testimonial_carousel_element').find('.prev') },and replace them with:
function testimonialsCarousel(){ "use strict"; $('.testimonial_carousel').each(function(){ var $self = $(this); $(this).carouFredSel({ auto: true, scroll: { items : 1, fx: 'fade', duration:200 },//add here the duration of a testimon. prev : { button : $self.parent('.testimonial_carousel_element').find('.prev') },If you want to scroll only on arrow click then you must set ” auto: false” in the above code.
2- I added this line:
.testimonial_carousel .item .param h6 { width: 70% !important; text-align: center; margin-left: 10%; }in the@media (max-width:767px){chunk of css in your custom css box. This is the result.3-To remove the coma, please go to file vc_templates\testimonial_carousel.php and find this line:
$output .= '<h6>'.esc_html(get_the_title()).', </h6><span class="position"> '.esc_attr($cl_redata['staff_position']).'</span>';
Replace with this:
$output .= '<h6>'.esc_html(get_the_title()).' </h6><span class="position"> '.esc_attr($cl_redata['staff_position']).'</span>';Note: There is no need to repost, since it will only delay our reply. We respond to topics according to time. The older ones, first.
Best regards!
in reply to: Adding a stripe of picturesHello,
You can use the ‘Media’ element. Set the row in three columns and add a “media’ image for each. Since it is a Visual Composer element, it is responsive too.
Best regards!
in reply to: Bigger Social IconsHello,
You can change them with some css code. If you show us the link, we can give you the precise code.
Best regards!
in reply to: Header not responsive in browserHello,
You can change the ‘Read more’ in file \includes\view\blog\loop-grid.php. Look carefully for the class you should add the php code and find it in the file. Place your code right after it.
Best regards!
-
This reply was modified 11 years, 1 month ago by