Reputation: 188
I have a problem creating responsive design of my website. When I resize my browser window to specific width the header dissapers and only body part shows up. Here is the link to my blog website: http://alpha1.dentalblog.az/home/ when resized it won't show you the menu and header logo part. (tablet size or mobile size). Any help is greatly appreciated.
Upvotes: 0
Views: 1248
Reputation: 15609
In responsive.css
, you have this style:
.hidden-phone{
display:none !important;
}
Specifically called when the page is less than 767px
.
Line 180 you need to remove or change.
Upvotes: 2