Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #242088
    td8000
    Participant

    Hi there,

    i would appreciate some more help with my website:

    https://eugenfloethmann.de/

    1. How to center Logo/Tite an navigation menu. Everything above slilder
    2. On all other pages i need to change the height and color of grey background behind page titles
    3. How can i remove the line “BY DRESSEL” above posts and “prev post”/”next post” section below?
    ( https://eugenfloethmann.de/featured-content/das-buch-zum-thema/ )
    4. Also i need to remove height of my footer widget. (Impressum)

    Thanks so much for help, Tobi

    #242160
    Skandha
    Participant

    @td8000: Hello Tobi,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To center align site title logo and navigation */
    @media screen and (min-width: 64em) {
    	.site-branding {
    		margin: 0 auto;
    	}
    }
    #header-navigation-area {
        margin: 0 auto;
    }
    
    /* To adjust height of grey background other pages other that homepage */
    body:not(.home) .custom-header .custom-header-content {
        padding: 100px;
    }
    
    /* To remove the line “BY DRESSEL”  and  “prev post”/”next post” */
    .single .entry-meta .byline, .single .nav-links  {
        display: none;
    }
    
    /* To reduce the height footer widget area */
    #colophon #tertiary {
        padding: 0;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #242183
    td8000
    Participant

    Awesome Skandha, you are master indded.

    Only tiny thing left would be the color of the grey background behind titles. Would be great to change it.

    Regards, Tobi

    #242186
    Skandha
    Participant

    @td8000: Hello Tobi,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    body:not(.no-header-media-text) .custom-header::after {
        background-color: #f23456;
    }

    You can change the color according to your choice.
    Let me know if this works out!
    Kind Regards,
    Skandha

    #242632
    td8000
    Participant

    Thank you Skandha.

    Works perfectly.

    #242705
    Skandha
    Participant

    @td8000: Hello Tobi, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-enterprise/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely
    appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Center title/navigation, Page title background margin/color, remove author’ is closed to new replies.