• Hi!
    I have a bunch of questions ’bout blog page customization.

    1. Is it any possible way to move date etc (entry-meta) from left side of blog post on top, right under entry-title and align it to left?

    2. Is it any possible way to move sidebar from right to left and align it to right?

    3. Is it any possible way to make different side bar for blog (it will be blog related) and for other pages (mostly links)?

    Thanks in advance!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @bubdadigger,

    1. Is it any possible way to move date etc (entry-meta) from left side of blog post on top, right under entry-title and align it to left?

    You could make use of some custom CSS to change the positioning of the date.

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    @media screen and (min-width: 1180px) {
        .entry-meta {
            position: static;
            width: 100%;
            text-align: left;
        }
    
        .entry-body {
            padding-left: 0;
        }
    
        .blog .without-featured-image > .entry-header, .single .without-featured-image > .entry-header, .archive .without-featured-image > .entry-header, .search .without-featured-image > .entry-header {
            margin-left: 0;
        }
    }

    Let me know if the above gets your posts looking as you wish. ??

    2. Is it any possible way to move sidebar from right to left and align it to right?

    You could float the content to the right and the sidebar to the left with the following:

    @media screen and (min-width: 850px) {
        .content-area, .content-wrapper .content-area {
            float: right;
        }
    
        .sidebar-widget-area {
            float: left;
        }
    }

    Please test the above snippet to make sure it works well across devices!

    3. Is it any possible way to make different side bar for blog (it will be blog related) and for other pages (mostly links)?

    If you have Jetpack installed, then I recommend enabling its Widget Visibility module. You’ll then be able to display/hide sidebar widgets on pages of your choice:

    https://jetpack.com/support/widget-visibility/

    Hope that helps out. ??

    Thread Starter bubdadigger

    (@bubdadigger)

    Thanks a lot, Siobhan!
    First of all let me say you have a beautiful name, and it suits perfectly for a such a beautiful woman :O)
    Always been a huge fan of Irish names.

    Back to business.
    You are an angel, thanks a lot for your help!
    Was on the right track, but made a few mistakes.
    So now I know the way and will play with child theme.

    Is it ok if I’ll bother you with more questions here? :O)

    Siobhan

    (@siobhyb)

    You’re most welcome, @bubdadigger. Thank you for your kind words too. ??

    If you have any extra questions then please feel free to start a new thread on this forum.

    It’s easier for us to keep track and help with different questions if they’re kept to separate threads.

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sela configuration, bunch of questions ’bout blog page’ is closed to new replies.