@Dave.82: Fist you need to remove your following css from “Custom CSS” box.
#secondary { float: right; padding-top: 20px; padding-bottom: 0px; padding-left: 10px; padding-right: 0px; text-align: left; width: 250px; font-family: Tahoma; font-size: 16px; Arial; line-height: 1.2; background-color: #fafafa; border-left: 1px solid #e6e6e6; }
/* =Sidebar verrücken
----------------------------------------------- */
#secondary{ margin-top: -50px; margin-right: -50px; }
The above custom css is conflicting with your responsive mobile design. So, if you want to add that you need to add that only for larger screen. Then the css will be as below:
@media screen and (min-width: 961px) {
#secondary { float: right; padding-top: 20px; padding-bottom: 0px; padding-left: 10px; padding-right: 0px; text-align: left; width: 250px; font-family: Tahoma; font-size: 16px; Arial; line-height: 1.2; background-color: #fafafa; border-left: 1px solid #e6e6e6; }
/* =Sidebar verrücken
----------------------------------------------- */
#secondary{ margin-top: -50px; margin-right: -50px; }
}
To Hide the Header Right Segment and the right sidebar in mobile devices below 768px you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
@media screen and (max-width: 767px) {
/* Hide Header Right Section */
#header-right { display: none; }
/* Hide Right Sidebar */
#secondary { display: none; }
}