Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1227405

    Using the elegant style for blog posts.

    1- The “post-meta-infos” are not center as the content. It is going to the left.

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    	max-width: 40em;
    	margin-left: auto;
    	margin-right: auto;
    }

    That max-width: 40em; is causing the problem.

    OR

    .html_elegant-blog #top .post-entry .post-meta-infos, .html_elegant-blog .avia-content-slider .slide-meta {
    	display: block;
    	text-align: center;
    	padding: 10px 0;
    	border-top-width: 1px;
    	border-top-style: solid;
    	border-bottom-width: 1px;
    	border-bottom-style: solid;
    	margin-top: 40px;
    	width: 100%;
    	clear: both;
    	float: left;
    }

    That float: left;

    2- It has 2 lines (border top and bottom) and if you hide author, comments, etc… The 2 lines stay there showing nothing.

    How to fix both?

    Thanks.

    #1227413

    1 ) use position flex instead:

    .html_elegant-blog #top .post-entry .post-meta-infos, 
    .html_elegant-blog .avia-content-slider .slide-meta {
      display: flex !important;
      flex-flow: row nowrap;
      justify-content: center;
      float: none !important;
      margin-top: 80px;  /*** to have the same distance as before ***/
      max-width: 100% !important;
    }

    By the way: see what happend if you got on justify-content : space-evenly or space-around or space-between

    of course it would be better to see the blog page in question.

    2) i think you can only have one or the other?
    or is it possible to show for one entry the post-meta infos and for the other not?
    so if you do not like to have two separators here – remove one of them ( border-top f.e.)

    • This reply was modified 4 years, 4 months ago by Guenni007.
    #1227423

    to have it perfect ( the separator exactly on the center too !

    .html_elegant-blog #top .post-entry .post-meta-infos, 
    .html_elegant-blog .avia-content-slider .slide-meta {
      display: flex !important;
      flex-flow: row nowrap;
      justify-content: center;
      float: none !important;
      margin-top: 80px;  /*** to have the same distance as before ***/
      max-width: 100% !important;
    }
    
    .html_elegant-blog #top .post-entry .post-meta-infos > * {
        width: 150px;  /*** just play a bit with this that it does not break at mobile screen-width ***/
    }
    
    .html_elegant-blog .post-entry .post-meta-infos .text-sep, 
    .html_elegant-blog .post-entry .slide-meta .slide-meta-del {
        width: 0 !important;
    }

    this is how it looks on justify-content: space-evenly:

    #1227429

    Thank you Guenni007 .

    The problem is that I am not using anything. The code above is a clean new install and how enfold comes. (I assume this can be fixed in the next update)

    So how to just fix the 2 issues?

    1- CSS for having meta in the center correctly.
    2- If I don’t show any meta, then the lines should go away.

    Thanks.

    #1227436

    So it wasn’t about finding the solution, but to have it installed from Dev-Team directly as a fix for next update, so that it works correctly depending on the setting. So why don’t you write it down this way?

    #1227459

    Yes, I will display the complete thing to none to fix it in the mean time.

    Also:

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    	max-width: 40em;
    	margin-left: auto;
    	margin-right: auto;
    }

    That max width should be 100%.

    Hopefully a dev sees this and comment as well.

    Thank you.

    #1227501

    yes that would do the trick – but to make it perfect – the separator between time and author had to be in the middle too.
    This is possible with flex modell and to give a fix width to those containers.
    the container with the text separator got the class: text-sep – this is set in the code above to a width: 0 because the content of it is not important it is a normal “/” and set with text-indent to not be seen. The visible Separator is only a border-left – and this could be seen even if width is 0.

    I like the setting with space-evenly

    #1227550

    I used: #top .fullsize .template-blog .post .entry-content-wrapper > * {max-width: 100%;} to override max-width: 40em; and now everything looks ok.

    Now the lines should disappear when nothing is shown.

    I believe both are bugs in the theme.

    Thanks.

    #1229190

    Hi,

    Glad it’s fixed. Let us know if you need anything else.

    Best regards,
    Ismael

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.