Header space on secondary pages
Support desk for Multipurpose Quark Theme
- GK User
- Sun Mar 08, 2015 9:18 pm
The header with mouse icon comes up on all pages. How do I remove it without removing it from frontpage or make it look better - narrow and without white space on top?
Page with example's here: http://v-boge.org/blog/tdjakes
EDIT:
I've got it partially fixed. It used to look like this: https://yadi.sk/i/_Wg1MOBuf8pPj
Then I've seen a glimpse of breadcrumbs stuck there between layers. Turned off breadcrumbs and now it looks better and menu is now visible. But we do need breadcrumbs. So, it needs to be fixed. Thanks.
Page with example's here: http://v-boge.org/blog/tdjakes
EDIT:
bozhenko wrote:The header with mouse icon comes up on all pages. http://v-boge.org/blog/tdjakes
I've got it partially fixed. It used to look like this: https://yadi.sk/i/_Wg1MOBuf8pPj
Then I've seen a glimpse of breadcrumbs stuck there between layers. Turned off breadcrumbs and now it looks better and menu is now visible. But we do need breadcrumbs. So, it needs to be fixed. Thanks.
-
- Platinum Boarder
- teitbite
- Wed Mar 11, 2015 9:18 pm
Hi
Please put breadcrumbs back and tell me the url to page where it's displayed wrong.
Please put breadcrumbs back and tell me the url to page where it's displayed wrong.
-
- Moderator
- GK User
- Wed Mar 11, 2015 9:25 pm
teitbite wrote:Please put breadcrumbs back and tell me the url to page where it's displayed wrong.
It's all pages but the frontpage of http://v-boge.org/, like http://v-boge.org/menyu/feedback and all secondary pages of site.
-
- Platinum Boarder
- teitbite
- Fri Mar 13, 2015 4:27 pm
hi
please try add this to css:
please try add this to css:
- Code: Select all
.single-page, .blog-page {
margin: 0 auto !important;
}
.single-page > .header, .blog-page > .header {
margin: 0;
}
-
- Moderator
- GK User
- Fri Mar 13, 2015 4:37 pm
teitbite wrote:hi
please try add this to css:
Now the gap it huge and breadcrumbs are visible, but it's not the way it should be according to the demo page. https://yadi.sk/i/tutPHzDvfEVGD
-
- Platinum Boarder
- teitbite
- Sat Mar 14, 2015 3:01 pm
Hi
Ok. So it's clear I do not understand how this should looks like. Can You please show me an example, so I'll work on this to make it similar ?
Ok. So it's clear I do not understand how this should looks like. Can You please show me an example, so I'll work on this to make it similar ?
-
- Moderator
- GK User
- Sat Mar 14, 2015 3:51 pm
teitbite wrote:Can You please show me an example, so I'll work on this to make it similar ?
Here's the screenshot from your demo site: https://yadi.sk/i/xFGdCQETfFcgZ
But there's no breadcrumbs on your demosite whatsoever. Could it be that it was overlooked totally while developing the template? It would be needed at least partially. Like, for instanse, when I am at category list view, breadcrumbs are fine to be gone. But on the article view - it should be there...
-
- Platinum Boarder
- teitbite
- Tue Mar 17, 2015 10:17 am
Hi
Thanks for that
All the time I was thinking that we are trying to make something different than demo ;/ Ok remove the code I've asked to add before and use this one instead:
Thanks for that

- Code: Select all
#gkBreadcrumb {
position: absolute;
top: 800px;
width: 100%;
z-index: 1;
}
-
- Moderator
- GK User
- Tue Mar 17, 2015 2:14 pm
teitbite wrote:Ok remove the code I've asked to add before and use this one instead:
Perfecto! Thank you VERY MUCH!
-
- Platinum Boarder
- teitbite
- Fri Mar 20, 2015 7:55 pm
Hi
No problem. Glad I could help
No problem. Glad I could help

-
- Moderator
- GK User
- Sat Mar 21, 2015 6:16 am
teitbite wrote:Glad I could help
Seems like it still doesn't behave and more help is needed.
https://yadi.sk/i/u-SG5lX3fQGTB
-
- Platinum Boarder
- teitbite
- Mon Mar 23, 2015 9:39 pm
Hi
Looks fine to me. What is the url to the page You've made this screenshot ?
Looks fine to me. What is the url to the page You've made this screenshot ?
-
- Moderator
- GK User
- Tue Mar 24, 2015 8:10 am
teitbite wrote:Hi
Looks fine to me. What is the url to the page You've made this screenshot ?
That is REALLY wierd... I've tried exactly the same page in both FireFox and Chrome, looks this way: https://yadi.sk/i/WJ9S1t3ffUS9w
-
- Platinum Boarder
- GK User
- Tue Mar 24, 2015 8:19 am
teitbite wrote:Hi
Looks fine to me. What is the url to the page You've made this screenshot ?
Could that be depending on the screen size? I'll be able to check it myself later, but I am guessing that flexibility/responsive design might have an issue with it?
-
- Platinum Boarder
- GK User
- Tue Mar 24, 2015 9:23 pm
bozhenko wrote:teitbite wrote:Hi
Looks fine to me. What is the url to the page You've made this screenshot ?
Could that be depending on the screen size? I'll be able to check it myself later, but I am guessing that flexibility/responsive design might have an issue with it?
Yep! Here's the screenshot from huge monitor and browser full screen: https://yadi.sk/i/IRtDwXYOfVXmK
Everything the same but windowed to be smaller: https://yadi.sk/i/bwenQoG4fVXz7
And the same setting with a little diffferent window size: https://yadi.sk/i/WDZYh54EfVY5e
So, obviously, breadcrumbs at the moment are NOT responsive like the whole template is...
-
- Platinum Boarder
- teitbite
- Thu Mar 26, 2015 5:09 pm
Hi
Ok. Previous solutions was not so great after all. Remove it. Lets try something different and move breadcrumbs physically to where it should be. Edit file /layout/head.php and add this at the end of this file:
Ok. Previous solutions was not so great after all. Remove it. Lets try something different and move breadcrumbs physically to where it should be. Edit file /layout/head.php and add this at the end of this file:
- Code: Select all
<script type="text/javascript">(function($) {$(document).ready(function() {
if( $('#gkBreadcrumb').size() > 0 ) {
$('#gk-content-wrapper').prepend( $('#gkBreadcrumb') );
}
});})(jQuery)</script>
-
- Moderator
- teitbite
- Fri Mar 27, 2015 10:27 am
Hi
Closing this thread since it has a faulty solution. Moving to this thread for a clean start.
https://www.gavick.com/forums/quark/res ... 38#p223738
Closing this thread since it has a faulty solution. Moving to this thread for a clean start.
https://www.gavick.com/forums/quark/res ... 38#p223738
-
- Moderator
17 posts
• Page 1 of 1