Edin Theme. help needed here!!

  • Unknown's avatar

    I am very new to all of this but I am working it out!
    I would like to do a few things:
    1. move the text within my feature image so it can be read easier. maybe top left?
    2. I would like the header and menu to stay static, if thats the right word, meaning stay on the top of the page while the rest of the page scrolls.
    do-able?
    http://www.egroupvegas.com

    thank you!!!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Both of your requests are possible. To make the changes, paste the code below into the CSS box in your customizer.

    1. move the text within my feature image so it can be read easier. maybe top left?

    .with-featured-image .entry-content{
    	margin-left: -15%;
    	margin-top: -10%;
    	padding-bottom: 15%;
    }

    Another way to make the text more legible is to use a text shadow. If you use this code, you can see what that would look like.

    .with-featured-image .entry-content{
    	text-shadow: 2px 2px 2px black 
    }

    2. I would like the header and menu to stay static, if thats the right word, meaning stay on the top of the page while the rest of the page scrolls.

    #masthead{
    	position:fixed;
    	z-index: 2;
    	width:100%;
    }
    .site-content{
    	top: 300px;
    }

    Sometimes CSS changes have unintended consequences, so if you notice any strange behavior after you activate the CSS let me know and I’ll take a look.

  • Unknown's avatar

    so awesome, that is EXACTLY what I needed help with.
    THANK YOU so much!

  • Unknown's avatar

    ok, so it did mess with my widgets for the footer and front page

  • Unknown's avatar

    Sorry about that. This will fix your footer.

    .footer-widget-area, .site-footer{
    	position:relative;
    	top: 300px;
    }
  • Unknown's avatar
  • Unknown's avatar

    Happy to help. If I accidentally broke anything else, let me know ;)

  • The topic ‘Edin Theme. help needed here!!’ is closed to new replies.