• Resolved houseelibrary

    (@houseelibrary)


    I’m working on a website for a library and they want to have their mission statement appear as text to the right of the logo. Is there way to change the CSS so the header widget appears there?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author ronangelo

    (@ronangelo)

    You could set a width for the header widgets.
    Add this on Frontier Options -> Custom CSS

    .widget-header {
         width: 65%;
    }
    Thread Starter houseelibrary

    (@houseelibrary)

    WONDERFUL THANK YOU!

    Thread Starter houseelibrary

    (@houseelibrary)

    I’ve run into an oddity with the new theme update

    Now a portion of the logo image shows up covering some of the menu.
    website

    This is the custom CSS I have saved in the Frontier Options:

    #header-logo {display: inline-block;}
    #header-logo, #header-logo img {
    	max-width: 100%;
    	float: left;
    margin-bottom: -10px;
    }
    
    .widget-header {
    	        width: 65%;
                    margin-top: -10px;
                    margin-bottom: -10px;
    
    }
    
    body {
    	background-color: #505050;
    	color: #303030;
    	font-family: "Arial", Sans-serif, Cursive;
    	font-size: 13px;
    	line-height: 1.5;
    
    }
    Theme Author ronangelo

    (@ronangelo)

    The negative margin property you’ve added above is causing the logo to go way down.

    margin-bottom: -10px;

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Changing Header Widget Postion?’ is closed to new replies.