Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #451359

    Hi Support,

    I’ve been pulling my hair out regarding changing the blog layout around. I’ve made a few minor changes via CSS but am trying to do the following:

    – Remove the “Read More” under the title.
    – Change the Meta data where it currently says in About Us.
    – Remove the trailing slash in the Meta data after about us.

    Also, I noticed that bullets are shown on my categories in the sidebar, how do I remove them?

    http://tinypic.com/r/2jbmg7q/8
    http://tinypic.com/r/s4530o/8

    thanks for your help!

    #451634

    Hi tylerjmorrison!

    1. Please add this to Quick CSS:

    .page-id-18 .read-more-link {
    display:none !important;
    }

    2. I’m not sure what you mean by changing it, in what way?

    3. Add the following to Quick CSS as well:

    .page-id-18 .text-sep-cat {
    display:none !important;
    }

    4. Add the following to Quick CSS:

    #categories-2 ul {
    list-style: none !important;
    }

    Regards,
    Rikard

    #451684

    In terms of #2, as you’ll see in the first link, under the title it says “in About Us /”. Where is that file located so that I am able to change the structure? I’m looking to add something along the lines of “Listed in the category: (Category Name)”.

    #451687

    I added the CSS mentioned above and it worked well! How do I properly remove the indented space next to the categories (Where the bullets were)?

    Thanks!

    #452169

    Hey!

    1.) Edit includes > loop-index.php, look for this code:

      echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";
    

    Adjust the “in” string.

    2.) Looks like you figured it out.

    Cheers!
    Ismael

    #452299

    That’s it! You’re the best! Thanks!

    #452317

    Also, on the link noted in my initial post, how do I go about moving the blog posts so that they align left rather than center?

    #452459

    Hey!

    Please try the following in Quick CSS:

    .page-id-18 .fullsize .template-blog .post .entry-content-wrapper {
      max-width: 100%;
    }

    Cheers!
    Rikard

    #452518

    I tried that, but it did not work! I even used !important.

    #452525

    When I place the Blog Element in a 3/4 column, it then aligns left. However, I cannot get it to align left when it 100% width (1/1).

    #452533

    This is what I have so far:

    .big-preview.single-big { display: none !important; }

    #top .fullsize .template-blog .post .entry-content-wrapper > *{ max-width: 100%!important;
    }

    #top .fullsize .template-blog .post-title {
    text-align: left!important;
    font-size: 24px;
    }

    #top .fullsize .template-blog .post-meta-infos{
    text-align: left!important;
    }

    #452773

    Fixed it! Thanks, support! Can now be closed.

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Files to Edit Blog Layout’ is closed to new replies.