campdrunkisme
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Catalogue] Leaking Product title on Catalogue pageHi, I solved this by just removing the title all together from the products page by adding:
.archive #intro.option1 { display: none; }to the css. As I said, I’m using minamaze theme so if any of you out there have this problem as well you might have to adapt it so it fits your theme.
Forum: Themes and Templates
In reply to: [Minamaze] How can I make my Header static?The code that you commented on in my other thread might work for this as well, just change position from absolute to fixed. It worked for me anyway 🙂
#header { background: #000; /*or whatever bg you want*/ height: 8em; /*or whatever height you want*/ position: fixed; left: 0; width: 100%; z-index: 999999; } #slider-core { margin-top: 8em; /*the same as the height of your header*/ } #content { margin-top: 8em; /*the same as the height of your header*/ }I haven’t tried how it works in responsive mode though.
Forum: Themes and Templates
In reply to: [Minamaze] Full width header with costum backgroundI added it in my child css but if you don’t have one you can add it in the Custom CSS box in Apperance -> Theme Options -> General Settings
Forum: Themes and Templates
In reply to: [Minamaze] Full width header with costum backgroundOh, forgot this
#content { margin-top: 8em; /*the same as the height of your header*/ }Forum: Themes and Templates
In reply to: [Minamaze] Full width header with costum backgroundOk, easiest solution i came up with (not a super pretty one but still, it’s something):
#header { background: #000; height: 8em; /*or whatever height you want*/ position: absolute; left: 0; width: 100%; z-index: 999999; } #slider-core { margin-top: 8em; /*the same as the height of your header*/ }It gets a little wonky when you make the screen smaller but I don’t have time for that right now 🙂
Forum: Themes and Templates
In reply to: [Minamaze] Full width header with costum backgroundAnyone? Maybe something with position? I’ve never really gotten the hang of that…
Forum: Plugins
In reply to: [WP Catalogue] Leaking Product title on Catalogue pageI just checked how it looks with other themes (I’m using minamaze) and I guess the plugin is supposed to remove the page title? Cause the title is gone on every theme (at least the 5 others I tried) except in minamaze.
Forum: Plugins
In reply to: [WP Catalogue] Leaking Product title on Catalogue pageHi,
I have this problem as well, I’m on localhost right now but here’s a screenshot of a category page. It always shows the latest product I added.
Forum: Themes and Templates
In reply to: [Minamaze] Change responsive CSS (menu color-cellphone)Oh I’m an idiot, I totally forgot about !important. That did it, thank you!