Hello,

I'm a newbie about Drupal.
But my question is, how do I change the Theme Alpine pictures?
I can't find anything about this, and I will change the standard Mountain in a own picture.

So the background... now there are trees, but how do I changen this picture in a own picture?

Thanks you for your help.....

Thanks in advanced..

Marc.

Comments

VM’s picture

how you change the images is dictated by how the images are pulled into the theme. Have you inspected the element using your browser? views the source of the rendered page? looked at the CSS?

a quick view using the demo site as a test:

#header {
    width: 840px;
    height: 318px;
    background: url(images/header.gif) no-repeat top right;
    clear: both;
}

The above CSS pulls the header image (mountains) into the theme.

body {
    background: #000 url(images/background.jpg) repeat-x top fixed;
    color: #999;
    margin: 0;
    padding: 0;
}

The above pulls the background image into the theme.

My suggestion locate documentation on how to create a subtheme before changing out these or other elements. This is done to avoid have to make the same changes to the theme after an update.

Anonymous’s picture

Hi VM,

Thanks for your answer, the problem is solved.
I was searching in the menustructure in Drupal, but there is a other way for things to change...

Again.... Thank you very much, I really appreciate it.

Marc.