Forum Replies Created
-
AuthorPosts
-
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=185d42e3fc65bd3538a6209601dd3e6dPsink
KeymasterWe have fixed the issue in the latest update v1.2.4. Please update the theme
October 17, 2023 at 11:17 pm in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191131Psink
Keymasterseems you have managed to fix the issue
Psink
Keymaster@BASSINLA, You can add this CSS for the slider
.featured-slider .slick-track article{
background-position: top;
}And for featured image add this CSS
#page-site-header {
background-position: top !important;
}Hope this helps
October 15, 2023 at 11:32 pm in reply to: How can I adjust the cropping of an image in the Home Page/Slider? #191102Psink
KeymasterTo make the image larger you can change the value of the height in the below CSS
#page-site-header {
padding: 300px 0;
text-align: center;
position: relative;
background-color: #333;
background-size: inherit;
background-position: top;
background-attachment: fixed;
height: 100vh;
background-color: #000;
background-repeat: no-repeat;
}How does the CSS code you provided know to apply it only to the featured image on that one page, since none of the other featured images seemed to change?
– The code will apply for every element with the id ‘page-site-header’ -
AuthorPosts