Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #643538

    Hi.
    I’d need to get rid of the slash and date under the post title in a grid layout page as you can see at the link below.
    Further, I’d like to choice the number of words I can put before the “Read More” link. Is it possibile?

    How can I do to place completely at the right the “Read More” link?

    Many thanks.
    Regards,
    Piero

    View post on imgur.com

    #643588

    Hi edisai2014!

    Please provide us a link of your web site, so we can give you the CSS Snipper needed
    Thanks a lot

    Cheers!
    Basilis

    #643592

    The website is under costruction.
    I provide you the url below.
    Thanks.
    Piero

    #643902

    Hi, any help?
    Thanks.

    #644169

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .slide-meta {
        display: none;
    }
    

    Then add following code to Functions.php file of your child theme in Appearance > Editor and change excerpt length as needed

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    Best regards,
    Yigit

    #644193

    Hi, Yigit.
    Many many thanks.
    They both work.

    In the same grid layout page how can I change post title height?
    Post title and content post seem to have the same height…

    Best Regards,
    Piero

    #644196

    Hey!

    “Il sito sarà prossimamente online” can you please post temporary logins here privately as well so we can look into it?

    Regards,
    Yigit

    #644210

    Ok.
    You find it below.
    -Piero

    #644218

    Hey!

    Please add following code to Quick CSS

    .avia-content-slider .slide-entry-title {
        font-size: 19px;
    }

    If that does not help, please post screenshots showing the changes you would like to make. You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.

    Cheers!
    Yigit

    #644238

    Hi, Yigit.
    No, all works well with your advice.
    I’d have another question about colours and links.
    Can I use this thread or I have to create a new one?

    Cheers,
    Piero

    #644241

    Hey!

    Sure, you can use this one :)

    Regards,
    Yigit

    #644265

    So I go ahead!
    Now I have links blue with hover color in #ff5168 (bright pink), cause blue is my primary color.
    Can I transform links only in 1) post content (not title) and 2) the ‘read more link’ to be #ff5168 (bright pink) when you normally see these on the page and blue as hover color on them?
    In that case I’ll be able to maintain blue color as primary color and I’ll have a very strong bright pink color for post links and read more link.
    I hope all is clear, maybe not so clear.
    Basically I’d like to invert post content color links and read more links only, as all the website will remain as it is.
    As always thank you.

    – Piero

    #644323

    Hey!

    Please add following code to Quick CSS

    a.more-link:hover, .entry-content a:hover {
        color: #2d5c88;
    }
    
    a.more-link,.entry-content a {
        color: #ff5168;
    }

    Cheers!
    Yigit

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