Home Forums Pro Themes Realestate Base Pro Front Page Widget Extra Space

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #75458
    Justin Keane
    Participant

    I’m trying to remove the extra space in the text widget on my homepage, http://www.wynmarkcommercial.com. I also want the two links to extend across the page. I tried custom css but none worked for me.

    Also how would i decrease the footer margins? I need to reduce the black space above the column titles and below the columns (under the gallery pictures).

    #75481
    wensolutions
    Keymaster

    Hello @christinawynmarkcommercial-com,

    For of all thank you very much for using the theme.

    Now to manage the site as you require please add below given CSS. For this go to Admin Panel > Appearance > Customize > Additional CSS and paste the CSS.

    .home #text-12 {
    	padding: 50px 0;
    }
    .home #text-12 .textwidget > p {
    	letter-spacing: 1.5px;
    	margin-bottom: 0;
    	text-align: center;
    }
    .home #content {
    	padding: 0;
    }
    .home #footer-widgets {
    	padding: 15px 0;
    }

    Hope this helps.

    If you have any issues further then please let us know.

    Thank you .

    Best Regards!!

    Have a good day 🙂 .

    #76126
    Justin Keane
    Participant

    Thank you very much, it worked perfectly.

    I changed my front page a little and now I can’t figure out how to reduce the white space between the front page widgets. I tried #front-page-widget-area and .home #widgets along with several other variations. Can you please tell me how to correctly reference the home page widgets.

    Also how do i change the size of the images under “featured listings” (RB: Partners:) and “portfolio gallery” (RB: Portfolio:)? As well as stretch sections to the full width of the page.
    The customize layout options didn’t change this area.

    Finally, is there an option to remove the image carousel from the home page? I used the RB: Featured Page widget. I tried using the post ID 32 with content excerpt, however, it will only show the title and subtitle.

    Thank you very much in advance!

    #76307
    wensolutions
    Keymaster

    Hello @christinawynmarkcommercial-com,

    Please find answere to your queries below:

    I changed my front page a little and now I can’t figure out how to reduce the white space between the front page widgets. I tried #front-page-widget-area and .home #widgets along with several other variations. Can you please tell me how to correctly reference the home page widgets.

    Response: Please add below given CSS.

    .home #sidebar-front-page-widget-area .widget {
    	padding: 100px 0; /* Decrease the number as needed */
    }

    Also how do i change the size of the images under “featured listings” (RB: Partners:) and “portfolio gallery” (RB: Portfolio:)? As well as stretch sections to the full width of the page.
    The customize layout options didn’t change this area.

    Response: Add below given CSS.

    .home #realestate-base-partners-3 .container {
    	max-width: 100%;
    	padding: 0;
    	width: 100%;
    }
    
    .home #realestate-base-partners-3 .inner-wrapper {
    	margin: 0;
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: wrap;
    	 flex-wrap: wrap;
    }
    
    .home #realestate-base-partners-3 .partner-item:nth-of-type(odd) {
    	padding: 0 5px 0 0;
    }
    .home #realestate-base-partners-3 .partner-item:nth-of-type(even) {
    	padding: 0 0 0 5px;
    }

    This will not work for portfolio section as this section requires code customization which is lengthy.

    Finally, is there an option to remove the image carousel from the home page? I used the RB: Featured Page widget. I tried using the post ID 32 with content excerpt, however, it will only show the title and subtitle

    Response: If you don’t want this section to appear then you just remove the widget from the widget area.

    Hope this helps.

    Thank you.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.