Viewing 15 posts - 1 through 15 (of 16 total)
  • Author
    Posts
  • icbl Friend
    #167901

    Hi,

    I would like to use backround picture which shows our school in the header. I just marked in the picture below. I wanna preserve logo and search modules. How can I do that?


    1. backg
    khoand Friend
    #409108

    Hi,
    You find this code from /templates/ja_social/css/template.css in the line #338

    #ja-header {
    border-top: 1px solid #4FAED2;
    margin-top: 29px;
    z-index: 13;
    background: red; < add this line
    }

    icbl Friend
    #409109

    I meant a background picture in the yellow colored marked zone!!

    khoand Friend
    #409113

    You find this code from /templates/ja_social/css/template.css in the line #338


    #ja-header {
    border-top: 1px solid #4FAED2;
    margin-top: 29px;
    z-index: 13;
    background-image: url(...); < add this line
    }

    icbl Friend
    #409115

    Hi,

    I used code as below but did not work, no effect at all. I uploaded package-background.jpg under /templates/ja_social/images/

    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13; }
    background-image: url(../images/package-background.jpg)
    }

    Minion Friend
    #409118

    Hi,

    use my code:

    <div id="ja-header" class="wrap ">
    <div class="main">
    <div class="main-inner1 clearfix">
    <!-- <div class="logo-text">
    <h1><a href="/index.php" title="Prague Latino Festival"><span>Prague Latino Festival</span></a></h1> -->
    <!-- <p class="site-slogan"></p> -->
    </div>
    <!-- <div id="ja-search">
    <form action="index.php" method="post" class="search">
    <label for="mod_search_searchword">
    Hledat </label>
    <input name="searchword" id="mod_search_searchword" maxlength="20" class="inputbox" type="text" size="20" value="hledat..." onblur="if(this.value=='') this.value='hledat...';" onfocus="if(this.value=='hledat...') this.value='';" /><input type="submit" value="Search" class="button"/> <input type="hidden" name="option" value="com_search" />
    <input type="hidden" name="task" value="search" />
    </form>
    </div> -->
    </div>
    </div>

    Don’ remember turn off ja-search and logo-text when you will 🙂

    In css: /templates/ja_social/css/template.css use this code:

    #ja-header .main {
    background: url(../images/latino_header.gif) no-repeat center;
    display: block;
    width: 980px;
    height: 101px;
    padding: 0;
    }

    my live web:

    http://www.praguelatinofestival.cz/

    Rudolf

    icbl Friend
    #409120

    Hi Rudolf,

    Your code perfectly working but as I said in my first message, I woudl like to keep Search and logo. At least Search 🙂

    Minion Friend
    #409132

    Ok, its very simple:

    Don’t edit file: templates/ja-social/blocks/header.php 🙂

    line #29

    <!-- <div class="logo-text">
    <h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1> -->
    <!-- <p class="site-slogan"><?php echo $sloganText;?></p> -->
    </div>
    <?php endif; ?>

    <?php if($this->countModules('search')) : ?>
    <!-- <div id="ja-search">
    <jdoc:include type="modules" name="search" />
    </div> -->

    and use original file:

    <div class="logo-text">
    <h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1>
    <p class="site-slogan"><?php echo $sloganText;?></p>
    </div>
    <?php endif; ?>

    <?php if($this->countModules('search')) : ?>
    <div id="ja-search">
    <jdoc:include type="modules" name="search" />
    </div>
    <?php endif; ?>

    <?php $this->genBlockEnd ($block) ?>

    Rudolf

    khoand Friend
    #409168

    Your code is wrong. You have odd { symbol.

    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13; }
    background-image: url(../images/package-background.jpg)
    }

    Right code is

    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13;
    background-image: url(../images/package-background.jpg);
    }

    You delete all of files of /cache and /t3-assets folder.
    I think my code is better suited for your purpose. header of http://www.praguelatinofestival.cz/ has 2 blue sides.
    Thanks for pinochico’s answers.
    <em>@icbl 263332 wrote:</em><blockquote>Hi,

    I used code as below but did not work, no effect at all. I uploaded package-background.jpg under /templates/ja_social/images/

    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13; }
    background-image: url(../images/package-background.jpg)
    }

    </blockquote>

    icbl Friend
    #409213

    Hi khoand,

    Thanks for that. Your code is just fine:) How can I prevent repeating?

    khoand Friend
    #409214

    Change code to


    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13;
    background-image: url(../images/package-background.jpg) no-repeat top left;
    }

    You remember delete all of files of /cache and /t3-assets folder again.

    icbl Friend
    #409217

    Its putting on the left. Can we make it center?

    khoand Friend
    #409219

    Change code to


    #ja-header { border-top: 1px solid #4FAED2; margin-top: 29px; z-index: 13;
    background-image: url(../images/package-background.jpg) no-repeat center center;
    }

    You remember delete all of files of /cache and /t3-assets folder again.

    icbl Friend
    #409220

    Thanks very much guys:)

    n6rej Friend
    #409298

    change background-image: url(../images/package-background.jpg) to background-image: url(../images/package-background.jpg no-repeat}
    or simply add background-repeat:no-repeat;

Viewing 15 posts - 1 through 15 (of 16 total)

This topic contains 16 replies, has 5 voices, and was last updated by  amlinc 12 years, 7 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum