Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorbjornart
    • CommentTimeMay 17th 2006
     
    I have integrated Plogger into the default "Kubrick" theme.
    This works fine except for one thing: I cannot change the color of the text of "Gallery Name". If you go to www.trondsen.org/gallery you can see that the gallery name is white text on white background. I have included this into my gallery.css file:
    #H1 {
    font-size: 30%;
    }

    I have also changed, in the CSS file, the background color to black.
    But none of these changes occur. When you look at the HTML code for the gallery, it seems to load
    <link rel="stylesheet" href="http://www.trondsen.org/wp-content/themes/standard-norsk/style.css" type="text/css" media="screen" />
    when exectugin the <?php
    get_header();
    ?>

    Further down, it seems to load
    <head>
    <link rel="stylesheet" type="text/css" href="http://www.trondsen.org/gallery/css/gallery.css" />
    <script type="text/javascript" src="http://www.trondsen.org/gallery/dynamics.js"></script></head>



    Here's my index.php:

    <?php require('../wp-blog-header.php');?>
    <?php require('gallery.php');?>
    <?php
    get_header();
    ?>

    <head>
    <?php the_gallery_head(); ?>
    </head>



    <div class="narrowcolumn">
    <?php the_gallery(); ?>
    </div>


    <?php get_sidebar(); ?>

    <?php get_footer(); ?>



    Any help would be appreciated.