Tagged: , , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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!).

    #136554

    Hi,

    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

    #136555

    Sorry 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

    #136556

    I 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

    #136557

    Hey,

    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

    #136558

    Fantastic cheers!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘CSS location for changing headers etc & tables.’ is closed to new replies.