Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter blackmajik2021

    (@blackmajik2021)

    replaced header .php with default code

    Thread Starter blackmajik2021

    (@blackmajik2021)

    .tile .links {
    z-index:10;
    position:absolute;
    bottom:8px;
    left:0;
    height:32px;
    width:100%;
    }
    .tile .links .date{
    font-size:1.9em;
    text-indent:0.8em;
    padding:0;
    float:left;
    width:260px;
    line-height:32px;
    }
    .tile .links .comments {
    float:right;
    }
    .tile .links .comments a{
    margin:4px 6px 0 0;
    /*padding: 2px 0;*/
    text-align:center;
    width:14px;
    height:14px;
    /*background:url(images/comments.png) no-repeat 3px 1px;*/

    I edited the font size I marked in bold, but nothing changed…any ideas?

    Thread Starter blackmajik2021

    (@blackmajik2021)

    i fixed it by making the invisible text under the header larger, it is the text that is the link not the image.

    Thread Starter blackmajik2021

    (@blackmajik2021)

    I’m using the inspect element feature. Its a great tool, thanks for the tip, but there are no dimension specifications inside the CSS code for the header, which is why im having a tough time.

    Thread Starter blackmajik2021

    (@blackmajik2021)

    Do you know a way to do it without editing the header.php?

    Thread Starter blackmajik2021

    (@blackmajik2021)

    hm, it didnt do anything, where do i put it in the header.php file?

    <?php
    /**
     * @package WordPress
     * @subpackage Constructor
     */
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    <head profile="https://gmpg.org/xfn/11">
        <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
        <title><?php wp_title('&raquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
        <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
        <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
        <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
        <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
        <?php wp_get_archives('type=monthly&format=link'); ?>
        <?php wp_head(); ?>
    </head>
    <body <?php body_class(get_constructor_category_class()); ?>>
    
    <div id="body">
       <div id="wrapheader" class="wrapper">
           <div id="header">
                <?php get_constructor_menu()  ?>
                <div class="logo">
                    <h1><a href="<?php echo get_option('home'); ?>/" title="<?php bloginfo('name'); echo " &raquo; "; bloginfo('description');?>"><?php bloginfo('name'); ?></a></h1>
                    <h2><?php bloginfo('description');?></h2>
                </div>
           </div>
       </div>
    
       <div id="wrapcontent" class="wrapper">
           <?php get_constructor_slideshow() ?>
           <div id="content" class="box shadow opacity">
Viewing 6 replies - 1 through 6 (of 6 total)