Viewing 21 posts - 1 through 21 (of 21 total)
  • Author
    Posts
  • #1114138

    Hello

    I have a client who is requesting the sidebar of the “work” (blog hosting) page have the same exact styling as the posts –

    – remove bullets
    – the width from the right side of the screen to be the same (decrease right side padding)
    – make text grey with underline hover instead of blue

    This is the sidebar they want to mimic – http://8gt.3f2.myftpupload.com/2014/08/oracle-high-school-teams-up-with-svm/

    Here is the page with the wrong sidebar – aperseatanddrink.com

    Thanks so much
    let me know if you have any questions
    Brian

    #1114139
    This reply has been marked as private.
    #1114153
    This reply has been marked as private.
    #1114229

    Hi,

    Thank you for using Enfold.

    Did you assign featured images to those posts? The featured image should automatically display in the archive page. However, you have to make sure that the appropriate style is selected in the the Enfold > Blog Layout > Blog Layout.

    Best regards,
    Ismael

    #1114273
    This reply has been marked as private.
    #1114621

    Hi schwabino,

    Here is how to customize the category page layout:

    Best regards,
    Victoria

    #1114937

    Hello Victoria, is there a way to just make the feature image populate on the category display?

    http://8gt.3f2.myftpupload.com/category/commercial/

    Thanks
    B

    #1115800

    Hi,

    Thank you for the update.

    We added this code in the functions.php file to change the blog style of the archive or category pages.

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'single-big';
        return $layout;
    }
    

    Best regards,
    Ismael

    #1117163
    This reply has been marked as private.
    #1117518

    Hi Brian,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .archive.category .post-meta-infos {
        display: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1118149
    This reply has been marked as private.
    #1118159

    Hello

    Sorry, one last additional request, we currently have all the blog posts highlighted Blue under “Work” but there are 3 market sectors (categories) that we want the blog posts to have the Culture active link to be highlight blue vs the “Work” page highlighted in blue. The 3 categories that we would like to have “Culture” highlighted blue on the top nav is Employee Engagement, Giving Back, and Positive Pulse. Is there a way to have these posts have the “Culture” tab up top highlighted blue opposed tot he “Work” tab?

    Thanks so much and I hope this makes sense, we already modify some code to have certain pages highlighted blue so you may need to reference the custom CSS box :)

    Thanks
    B

    #1118879

    Hello

    Sorry, one last additional request, we currently have all the blog posts highlighted Blue under “Work” but there are 3 market sectors (categories) that we want the blog posts to have the Culture active link to be highlight blue vs the “Work” page highlighted in blue. The 3 categories that we would like to have “Culture” highlighted blue on the top nav is Employee Engagement, Giving Back, and Positive Pulse. Is there a way to have these posts have the “Culture” tab up top highlighted blue opposed tot he “Work” tab?

    Thanks so much and I hope this makes sense, we already modify some code to have certain pages highlighted blue so you may need to reference the custom CSS box :)

    Thanks
    B

    #1118988

    Hi,

    can we please make the “market sectors” (Category page with feed) be 3 colums to match the other blog pages?

    That’s the grid layout. You can replace the previous filter with this:

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
        if($context == 'archive') $layout = 'blog-grid';
        return $layout;
    }

    Not really sure what you meant with the “highlights”. Could you provide a screenshot?

    If you have any additional questions, please open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1119216

    “Highlighted blue on the top nav” was referring to roll-over hover color for the top navigation menu

    I would like the culture posts to have the top navigation menu link “culture” to be n the roll-over-active state blue that is used on all other pages when active.

    Hope that helps, thanks for the info on starting new threads I will do that moving forward

    Thanks
    B

    #1119219

    I added the code you provided into the CSS box on the “General Styling” tab –

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }
    Then went to the category page – http://8gt.3f2.myftpupload.com/category/commercial/

    and still, see just 1 column opposed to 3

    I removed the code from the CSS box, is there somewhere else I should be placing this code?

    Thanks
    Brian

    #1119396

    Hi Brian,

    I added the code you provided into the CSS box on the “General Styling” tab –

    Please try it in your functions.php file instead. This is PHP code and won’t work in Quick CSS.

    Best regards,
    Rikard

    #1119662
    This reply has been marked as private.
    #1119773

    Hi,

    Thanks for the update. Please try the following in Quick CSS under Enfold->General Styling:

    .archive div.slide-meta {
      display:none;
    }

    Best regards,
    Rikard

    #1119972

    Thanks so much!

    #1120073

    Hi,

    Great, I’m glad that we could help. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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