-
AuthorPosts
-
June 28, 2019 at 1:11 am #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 blueThis 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
BrianJune 28, 2019 at 2:20 am #1114139This reply has been marked as private.June 28, 2019 at 4:27 am #1114153This reply has been marked as private.June 28, 2019 at 11:59 am #1114229Hi,
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,
IsmaelJune 28, 2019 at 3:20 pm #1114273This reply has been marked as private.June 30, 2019 at 5:36 pm #1114621Hi schwabino,
Here is how to customize the category page layout:
Best regards,
VictoriaJuly 1, 2019 at 5:20 pm #1114937Hello Victoria, is there a way to just make the feature image populate on the category display?
http://8gt.3f2.myftpupload.com/category/commercial/
Thanks
BJuly 4, 2019 at 3:03 pm #1115800Hi,
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,
IsmaelJuly 9, 2019 at 7:33 pm #1117163This reply has been marked as private.July 10, 2019 at 6:19 pm #1117518Hi 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,
VictoriaJuly 12, 2019 at 6:39 pm #1118149This reply has been marked as private.July 12, 2019 at 7:33 pm #1118159Hello
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
BJuly 15, 2019 at 6:04 pm #1118879Hello
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
BJuly 15, 2019 at 11:59 pm #1118988Hi,
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,
IsmaelJuly 16, 2019 at 5:57 pm #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
BJuly 16, 2019 at 6:01 pm #1119219I 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
BrianJuly 17, 2019 at 5:59 am #1119396Hi 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,
RikardJuly 17, 2019 at 6:53 pm #1119662This reply has been marked as private.July 18, 2019 at 5:44 am #1119773Hi,
Thanks for the update. Please try the following in Quick CSS under Enfold->General Styling:
.archive div.slide-meta { display:none; }
Best regards,
RikardJuly 18, 2019 at 6:14 pm #1119972Thanks so much!
July 19, 2019 at 7:36 am #1120073 -
AuthorPosts
- You must be logged in to reply to this topic.