Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #203098

    Hello,
    I would like to have two different of posts, ‘blogs’ and ‘latest news’. I would like blog posts to automatically appear on the Blogs page and latest news posts to automatically appear of the News page. Is this possible and, if so, how do I go about it?

    Thanks

    Giles

    #203381

    Hi Giles!

    Please do not choose blog page in Enfold theme options and create two pages for your posts. You can add any of blog elements to your page and choose to display certain categories. Same goes for the second category. That should do it

    Cheers!
    Yigit

    #204301

    Yigit,

    Thanks for that. I will be looking at that over the next couple of days.

    Just to say, I am enjoying playing with this theme. It is the best one I have found so far.

    There are a couple of things I need assistance with:
    Breadcrumbs: How do I get rid of breadcrumbs? (I’m sure I have seen this option somewhere, but I can’t find it now)
    Buttons: If I am only using icons within buttons (and no text), is it possible to make them circles instead of rectangles?

    Thanks in advance.
    Giles

    #204376

    Hey!

    You can remove the breadcrumb using this on Enfold > Styling > Quick CSS:

    .breadcrumb.breadcrumbs.avia-breadcrumbs {
    display: none;
    }

    To change the button to circle, first, you need to add a unique selector for each Avia Elements. Edit functions.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;

    Below, add this code:

    add_theme_support('avia_template_builder_custom_css');

    Edit any avia elements like Buttons then scroll below. Add a unique css selector on “Custom Css Class” field. For example, add “awesome-button”.

    You can add something like this on your custom.css or Quick CSS:

    .awesome-button .avia-button {
    border-radius: 40px;
    padding: 20px;
    font-size: 12px;
    text-decoration: none;
    display: inline-block;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin: 3px 0;
    line-height: 0;
    position: relative;
    font-weight: normal;
    text-align: center;
    width: 40px;
    min-width: 40px !important;
    }

    Regards,
    Ismael

    #204523

    Thanks for this. I am still building the site and when I am closer, I will be brave and try this.

    Giles

    #204547

    We looking forward to hearing from you :)

    Regards,

    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Blog posts and Latest News posts’ is closed to new replies.