-
AuthorPosts
-
October 28, 2015 at 2:49 pm #526120
I would like to move the border around the icon of the pencil when I choose Blog Grid for my posts.
my site is on a Dev system on my desktop at this stage so have added a screen shot for you.
you provided code to remove pencil Icon etc, but I would like CSS Code to remove the box border . Not just hide it.This is the sample screenshot
http://snag.gy/bYYKn.jpgI hope this is enough to allow you to help me
Thanks heaps..
There is a ”Pencil” default icon which comes if you dont have a blog featured image assigned to a blog item. Is there a way to remove the whole box including the pencil. and 2. How do I remove the comments and Date (0 Comments/October 27, 2015 ) from under the heading. thanks
1 other reply
YeetHi!
1&2- Please add following code to Quick CSS in Enfold theme options under General Styling tab.slide-meta { display: none !important; }
.slide-entry .fallback-post-type-icon { display: none; }3- Please add following code to Functions.php file in Appearance > Editor
add_filter(‘avf_postgrid_excerpt_length’,’avia_change_postgrid_excerpt_length’, 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}and adjust “100” as needed
If these do not help, please create a thread on our support forum – https://kriesi.at/support/ :)
wealthyonewealthyone Purchased Supported
Great. I love this theme. they all worked however I also wanted the Box (borders) that are around the pencil icon as well. thanks
YeetHi!
Please start a thread on our support forum – https://kriesi.at/support/ and post the link to your website with a screenshot showing the changes you would like to make :)
- This topic was modified 9 years ago by wealthyone.
October 28, 2015 at 2:53 pm #526127Hi wealthyone!
Welcome to our forum! :)
Please add following code to Quick CSS as well
.avia-content-slider .fake-thumbnail .slide-image { border: none; }
Cheers!
YigitOctober 28, 2015 at 3:08 pm #526146Yigit, your wonderful
that worked well..Thanks heaps
October 28, 2015 at 3:18 pm #526155Hi!
You are welcome, we are always happy to help!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
Yigit -
AuthorPosts
- The topic ‘Remove border and Pencil around Blog Post’ is closed to new replies.