Forum Replies Created
-
AuthorPosts
-
hwaitah
MemberThanks Badlywired. As I've posted earlier, whatever changes I made at Appearance > Editor > styles.css had no effect. So, based on what you wrote, I figured out to make the change at Appearance > Edit CSS (I had the Jetpack installed) by adding the following lines:
a { border-bottom: none !important; } .footer-widgets a { border-bottom: none !important; }
And voila! The dotted lines disappeared at the content and footer.
Thanks so much Krishan and Badlywired for all your help.
hwaitah
MemberThanks Krishan.
I did as you said at Appearance > Editor > styles.css and there was no changes. Then I did it at Appearance > Edit CSS and now there's no dotted lines at below 'Read more' links on the front page. However the other links still have the dotted lines. For example, if you scroll down, you will still see them. Even pictures that have hyperlinks have the dotted lines below them, which is what I don't want.
Is there a way or code to make a global change to remove the dotted lines on all the links?
Thanks again.
hwaitah
MemberSo, I've commented out a line as below.
function child_grid_loop_helper() {
global $inspyr_theme_var;
if (function_exists('genesis_grid_loop') && !$inspyr_theme_var->options['inspyr_disable_homepage']) {
remove_action('genesis_before_post_content','generate_post_image',5);
genesis_grid_loop(array(
'features' => 1,
'feature_content_limit' => 0,
/*** 'grid_image_size' => '', */ /*I commented out this line*/
'grid_content_limit' => 0,
'more' => __('Continue','inspyr'),
'posts_per_page' => 5,
));
}
else { genesis_standard_loop(); }
}
remove_action('genesis_loop','genesis_do_loop');
add_action('genesis_loop','child_grid_loop_helper');It helps to remove the duplicated in the featured post, but the size of my image in the latter posts (below) have become smaller (thumbnail) instead. That's an unwanted side effect. Any help please?
-
AuthorPosts