-
AuthorPosts
-
November 19, 2014 at 11:13 am #353542
Hi,
As you can see http://kamis.gov.tr/?p=373 there is an empty place between title and line. How can I reduce that. Also is there a way to change “Blog-En Güncel Haberler” text.
Also, is there a way to align left title and date?
thanks
November 19, 2014 at 12:06 pm #353575Hey om_eraydin!
Thank you for using our theme.
If you want to reduce the space between title and headline put in Enfold->Styles->QUICK-CSS field or custom.css and adjust the value:
.single-post .content { padding-top: 30px !important; }To align the title and date put in Enfold->Styles->QUICK-CSS field or custom.css:
#top .fullsize .template-blog .post-meta-infos { text-align: left !important; } #top .fullsize .template-blog .post-title { text-align: left !important; margin: 0 !important; }Regards,
GünterNovember 19, 2014 at 12:09 pm #353580Gunaydin @om_eraydin
1- to reduce the height of the breadcrumb line add theses lines into your style.css of the child theme or Enfold->Styles->QuickCSS field
#top .title_container .container{
padding-top: 3px !important;
padding-bottom: 3px !important;
min-height: 36px !important;
}
2- to reduce the the empty place between title and the corps of the post (but it will effect all “content” classes :
.content{
padding-top: 20px !important;
}November 19, 2014 at 12:31 pm #353588Hi!
To change blog title you can use a filter. In functios.php add the following:
add_filter('avf_title_args', 'my_title', 10, 2) function my_title($args, $post_id) { $args['title'] = 'your title'; return $args; }Regards,
GünterNovember 20, 2014 at 10:49 am #354177Hi,
I added that code to themes/enfold/functions.php file but title did not change.. What might be the problem?
Your other codes worked properly, thanks
November 20, 2014 at 11:20 am #354199 -
AuthorPosts
- You must be logged in to reply to this topic.
