-
AuthorPosts
-
August 20, 2013 at 4:11 pm #28123
I give up tried looking via developer tools, but too new to CSS to figure out where to change the headings for blog entries. I managed to change them to a different font with the google font plugin but cannot change the size and they are way too small for the blog entry posts. I need to be able to change them & I also need to be able to override your table preferences as they are interfering with a plugin I use called tablepress (I will use your tables when they become as versatile!).
August 21, 2013 at 12:32 am #136554Hi,
If you are talking about the main title, you can use this on your custom.css or Quick CSS:
.title_container .main-title {
margin: 0;
font-size: 30px;
position: relative;
z-index: 2;
min-height: 36px;
line-height: 2.3em;
top: 0;
font-weight: 400;
}Table css can be found on css > base.css > #Table.
Regards,
Ismael
August 22, 2013 at 11:15 pm #136555Sorry for late reply been away! No not the category header ( how do I get rid of the word Archive?), it’s the actual blog posts on the Home page or any other page that displays my posts.
Cheers in advance
Phil
August 22, 2013 at 11:42 pm #136556I think I found it! but still trying to get rid of the word archive that is in the .title_container .main-title. Also the table thing didn’t help no idea how to change layout colours etc.
Cheers
Phil
August 24, 2013 at 7:31 am #136557Hey,
You can remove the word archive on framework > php > function-set-avia-frontend.php, find this code:
if(!function_exists('avia_which_archive'))
{
/**
* checks which archive we are viewing and returns the archive string
*/
function avia_which_archive()
{
$output = "";
if ( is_category() )
{
$output = __('Archive for category:','avia_framework')." ".single_cat_title('',false);
}
elseif (is_day())
{
$output = __('Archive for date:','avia_framework')." ".get_the_time('F jS, Y');
}
elseif (is_month())
{
$output = __('Archive for month:','avia_framework')." ".get_the_time('F, Y');
}
elseif (is_year())
{
$output = __('Archive for year:','avia_framework')." ".get_the_time('Y');
}
elseif (is_search())
{Regards,
Ismael
August 27, 2013 at 7:11 am #136558Fantastic cheers!
-
AuthorPosts
- The topic ‘CSS location for changing headers etc & tables.’ is closed to new replies.