Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #55520
    moultrup
    Member

    Few things:

    1. Is there a way to include a logo above the page title and promotional message?

    2. Can I edit the size/padding of the transparent box around the Slide Image text?

    3. Can I decrease the padding between the Site Title/Promotional Message and the Page Title/Content seen here on page I’m currently trying to adust: http://lexingtonadvisorsinc.com/about/

    Thanks for all your feedback, you’ve been very helpful!

    #55528
    moultrup
    Member

    One other thing, can I have it so the transparent black background on the Featured Slider remains visible instead of only when you hover your mouse over it?

    #55543
    Sakin
    Keymaster

    @moultrup:
    1. There is 2 area where you can add in logo. First, inside header toggle. For that you can just go to “Appearance => Customize => Site Title & Tagline”. Upload your logo and uncheck “Check to disable logo”. Second, logo icon in the left of fixed header top, for that go to “Appearance => Customize => Theme Options => Icon Options”.

    Sorry there is no option to add above promotion message. But in pro version, there is option to disable header toggle. So, it will fixable the header below your menu where you can show site title and logo as per your need.

    2. Are you taking about the text box in your slider. If so then you adjust the size, padding in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:

    #feature-slider .entry-container {
        padding: 20px;
        width: 50%;
    }

    3. Site Title and promotion message are 2 different elements. I guess you are talking about Promotion Message. You can adjust the padding-bottom in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS” box:

    #promotion-message .wrapper, 
    #promotion-message .section {
        padding-bottom: 20px;
    }

    4. Then transparent black background in the Featured Page Slider is visible only in hover. Are you talking about the text as well?

    #55663
    Helle Naia
    Member

    Hi.

    I’m using the free “Full Frame” wp theme for this site:
    http://leneheckmann.dk.sandbox54.webhosting.dk/

    Is there a way I can move the top logo to be placed right instead of left?

    #55671
    Sakin
    Keymaster

    @Helle Naia: You can try adding in the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #logo-icon { float: right; }

    #55715
    moultrup
    Member

    Thanks for the fast reply, Sakin!

    So I have a few other questions, (hopefully it’s not too much trouble for you):

    Can I have it so the transparent black background on the featured slider is always active instead of only when you hover your mouse over it?

    Can I disable the menu bar on the right entirely, I simply don’t need it for anything.

    Also, how can I remove some of the space between the page title (“About”) and the promotional message (“Real Estate Advisory & Brokerage Services”) on each page, for example:

    http://lexingtonadvisorsinc.com/about/

    I’d like to do this with every page but whenever I try to edit the CSS, it changes the spacing on the landing page (lexingtonadvisorsinc.com) as well.

    #55749
    Sakin
    Keymaster

    @moultrup:
    1. You can add in the following css in “Appearance => Customize => Theme Options => Custom CSS Options”

    @media screen and (min-width: 991px) {
    	#feature-slider .cycle-prev,
    	#feature-slider:hover .cycle-prev {
    	    left: 80px;
    	    opacity: 1;
    	}
    	#feature-slider .entry-container {
    	    background: #444;
    	    background: rgba(0,0,0,0.6);
    	}
    }

    2. Do you mean the header toggle bottom, you can disable option in Pro version. In free version, you need to add in the following css in “Appearance => Customize => Theme Options => Custom CSS Options”
    #header-toggle { display: none; }

    3. For this, you can adjust the padding-bottom in the following css, for home don’t cahnge it and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 991px) {	
    	/* For All Pages */
    	#promotion-message .wrapper, 
    	#promotion-message .section {
    	    padding-bottom: 20px; 
    	}
    	/* For Homepage */
    	.home #promotion-message .wrapper, 
    	.home #promotion-message .section {
    	    padding-bottom: 20px; 
    	}
    }
    #55766
    moultrup
    Member

    You’re awesome! Thank you so much again – it all worked perfectly 😀

    #55767
    Sakin
    Keymaster

    @moultrup: Thanks for your appreciation. If you like Full Frame theme then please support it by providing your review and rating at https://wordpress.org/support/view/theme-reviews/full-frame?rate=5#postform. Thanks 🙂

    #55802
    moultrup
    Member

    @Sakinshrestha All set – gladly gave it 5 stars.

    #55848
    Sakin
    Keymaster

    @moultrup: Thanks 🙂

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Adding a Logo and Adjusting Padding’ is closed to new replies.