td8000
1
Hi there,
i am having some trouble to get some of my elements into the correct position.
http://yoga-in-jedem-alter.de/ebl-wp/inhouse-workshop/
- Topmenu (STARTSEITE I IMPRESSUM I AGB I KONTAKT) sholud be located right of the site title. Aligned to the right.
- Site Title (EBL INSTITUT) ist indented a bit to the right. Should be aligned with the subline.
- Page Content should also bei aligned with Subline/Main Navigation Menu. Now it’s positioned too far to the left.
- Copyright text in Footer also needs to be corrected in horizonatl position.
Thanks a lot for your help.
Tobi
Hi @td8000,
– Topmenu (STARTSEITE I IMPRESSUM I AGB I KONTAKT) sholud be located right of the site title. Aligned to the right.
Use this css code:
small {
float: left;
margin-left: 85px;
}
– Site Title (EBL INSTITUT) ist indented a bit to the right. Should be aligned with the subline.
Use this css code:
.container .header-area{
padding-left:0px;
}
– Page Content should also bei aligned with Subline/Main Navigation Menu. Now it’s positioned too far to the left.
Use this css code:
#primary{
padding-left:34px;
}
– Copyright text in Footer also needs to be corrected in horizontal position.
.copyright {
text-align: center;
}