A couble of questions

Hey,

<url removed>

1.) When i click on the category “Produktsortiment” then everything on the page will be moved a bit around, as if there was some margin linked to it? only happens on category, when you jump back and forth between them all.

2.) The category “Kontakt” is not getting the active link, as all the others are, when its in use?
#navigation > li > a.current { background: url(…/…/img/menu-bg2.png) no-repeat;}

3.) How can i change the height of the footer? it should be smaller

  1. It’s normal, the page somtimes fits in the window and then the scrollbar disappears, and that causes the page to move a little bit.

  2. How did you do the “Kontakt”-Link?

  3. It’s in your oxid.css:
    #footer dl {
    float:left;
    width: 233px;
    margin:10px 0px;
    color:#465256;
    min-height: 280px;
    border-right: 1px solid #3799b1;
    border-left: 1px solid #ffffff;
    }

Are you using Firebug? This tool is indispensable for this sort of stuff.

@leofonic
1.) Okay, but do you know of a fix for it?

2.) With an External Link : index.php?cl=contact

3.) I did try that. I changed it, but nothing happened when i did it. is it a combination between others?

@spurvis
Thats what im using. Still new at it, but i think im doing a pretty good job using it. At times, there just comes some, where i cant figure out how to fix it in oxid, like 1.) and 3.)

  1. The only fix i know is to make all your pages so tall that they never fit on the page.

  2. Kontakt is at the right of your categories so you don’t need a category here, you can just copy the link from footer to topcategories.tpl and add the current stuff analog to the home link:

    [{assign var="contactSelected" value="false"}]
    [{if $oView->getClassName() == 'contact'}]
        [{assign var="contactSelected" value="true"}]
    [{/if}]
    <li [{if $contactSelected == 'true' }]class="current"[{/if}]>
        <a [{if $contactSelected == 'true' }]class="current"[{/if}] href="[{ oxgetseourl ident=$oViewConf->getSelfLink()|cat:"cl=contact" }]">[{ oxmultilang ident="CONTACT" }]</a>
    </li>
  1. if you change this value in firebug nothing will happen. Change it in css and reload.