Forum Replies Created
-
AuthorPosts
-
Psink
KeymasterPlease add this CSS
#main-slider .cycle-caption {
display: none !important;
}Let us know if this works
November 1, 2023 at 1:20 am in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191298Psink
KeymasterYou can share image from this site
https://imgbb.com/you can simply share the link of image generated by that site
November 1, 2023 at 12:03 am in reply to: Adding CSS to Change Color of Contact-Info / Contact-Details Bar #191295Psink
KeymasterPlease add this CSS
p a {
color: #FFD618 !important;
}p a:hover {
color: #000 !important;
}.topheader-dropdown:hover, .topheader-dropdown:focus {
background: #FFD618 !important;
}@media screen and (max-width: 1279px){
#top-header .contact-info {
background-color: #FFD618 !important;
}
}Here is the screen record after adding this CSS
https://www.awesomescreenshot.com/video/22081301?key=fc05cb2cdccff24d353c8130b19de420October 31, 2023 at 11:52 pm in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191294Psink
KeymasterI see the height of the banner is pre-defined and that is 100vh both for larger and smaller screens. I made little changes in the CSS for small device I made height half 50vh
#page-site-header{
background-size: cover !important;
}@media screen and (max-width: 600px) {
#page-site-header{
height: 60vh !important;
}
}here is the screen record how it looks
https://www.awesomescreenshot.com/video/22081128?key=da0e8c60fc45fde62e42634817891ae4and you can adjust height as per your need
Psink
KeymasterThe theme itself does not provide options to add pagination to the News and Events section of the Homepage.
It can be possible with theme customization, you can hire a developer who can customize the theme or you can hire our theme customization team https://themepalace.com/hire-a-customizer/
Psink
KeymasterCould please share your site URL and if possible the reference screenshot? We will provide you CSS to fix this
October 31, 2023 at 11:19 pm in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191289Psink
KeymasterYou can try this CSS
#page-site-header{
background-size: cover;
}Hope this helps
October 30, 2023 at 11:47 pm in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191278Psink
KeymasterYou can add this CSS to override previous CSS
#masthead .wrapper {
position: relative;
left: auto !important;
margin-right: auto !important;
}October 29, 2023 at 11:30 pm in reply to: How can i re-arrange the sections of the website (Travel Master Pro) #191252Psink
KeymasterThe issue is solved in latest version v1.3.0
https://www.awesomescreenshot.com/video/22013099?key=aff625bd2708138622cf509fbc47e02aplease check your theme
October 29, 2023 at 2:48 am in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191246Psink
KeymasterThis CSS is responsible for the issue
#masthead .wrapper {
position: relative;
left: -138px;
margin-right: 298px;
padding-right: 5px;
-webkit-transform: translatex(0px) translatey(0px);
-ms-transform: translatex(0px) translatey(0px);
transform: translatex(0px) translatey(0px);
}You can remove this css from your site where ever you did add before
Psink
KeymasterPlease follow the screen record and add this code on your site
https://www.awesomescreenshot.com/video/22000035?key=d555783dfe9f1c881f0169e9486c4586
Add this code at the end of function.php file – as in the screen record
function unversity_pro_get_post_choices() {
$choices = array( ” => esc_html__( ‘–Select–‘, ‘unversity-hub-pro’ ) );
$args = array( ‘numberposts’ => -1, );
$posts = get_posts( $args );foreach ( $posts as $post ) {
$id = $post->ID;
$title = $post->post_title;
$choices[ $id ] = $title;
}return $choices;
}And add this code in the home-section.php – as in the screen record
‘choices’ => unversity_pro_get_post_choices(),
Psink
KeymasterIs it possible to share a reference screenshot? it would be easy for us to figure out the actual solution
Psink
KeymasterYes, you can use add wpbakery. Since wpbakery is not tested with the theme you may get minor layout issue.
But no worries we will assist you to fix the layout issuesPsink
KeymasterPlease add this code in the Additional CSS
.home #primary article .entry-header{
display: none;
}@media only screen and (min-width: 85.375em){
.home .site-content > .wrapper, #featured-slider-section + .site-content > .wrapper {
padding: 40px 30px;
}
}footer summary,
.wp-block-coblocks-social.is-style-mask:not(.has-colors) .wp-block-button__link:not(.has-text-color) {
color: #808080;
}To chnage the padding you can change 40px to any value as per your needed
to change the color you can change the color codePsink
KeymasterTo set a service title first you need to create a page with that title. Then after you can select the page on the service widget. Regarding icon you can set icon class on icon field
here is the screen record that can helps you
https://www.awesomescreenshot.com/video/21998988?key=185d42e3fc65bd3538a6209601dd3e6d -
AuthorPosts