blanch69
Forum Replies Created
-
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] expanded menu does not scrollThanks for the response, that makes sense.
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] expanded menu does not scrollAny questions or suggestions?
Forum: Themes and Templates
In reply to: [Dara] Adjust margins, padding, etc. for single pageMuch more elegant, thanks.
Forum: Themes and Templates
In reply to: [Dara] Adjust margins, padding, etc. for single pageThis is the site if you would like to suggest better code:
Thanks for the feedback
A.
Forum: Themes and Templates
In reply to: [Dara] Adjust margins, padding, etc. for single pageI figured it out:
Syntax:
#page-id-xx .nameoffirstclass, .nameofsecondclass {
Html attribute1: xxpx !important;
Html attribute2: xxpx !important;
}Actual code:
#page-id-31 .site-content.content, .content-wrapper.full-width.without-featured-image {
margin-left: 0px !important;
margin-right: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
}I figured out the css to correct the margins for just that page:
#page-id-31 .site-content.content, .content-wrapper.full-width.without-featured-image {
margin-left: 0px !important;
margin-right: 0px !important;
padding-left: 0px !important;
padding-right: 0px !important;
}They syntax for others trying to replicate is:
#page-id-xx .nameoffirstclass, .nameofsecondclass {
attribute1: xxpx !important;
attribute2: xxpx !important;
}Hopefully this helps someone else as I found no single post out there which helped.
Using google code editor I was able to remove all the margins, padding, etc.
this is what the html now looks like:
<div class=”content-wrapper full-width without-featured-image” style=”
margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right: 0px;
border-left-width: 0px;
“>However, i am having trouble writing the CSS which will change this just for the Gallery page.
Any suggestions?
Was only going to give view access to a freely available theme and plugin. Can’t see much damage that could result from that.
Tried using a default theme, no difference.
Only seems to be an issue in desktop view, not mobile.
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slides do not render in pageSeemed to resolve this by installing jetpack plugin
Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slides do not render in pageI checked and this code is already in there. For example, in the php.footer template, this is the css (see below). I am using a standard wordpress theme (Dara), so would expect this to work out of the box.
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.ww.wp.xz.cn/themes/basics/template-files/#template-partials
*
* @package Dara
*/?>
</div>
<?php get_sidebar( ‘footer’ ); ?>
<footer id=”colophon” class=”site-footer” role=”contentinfo”>
<?php dara_social_menu(); ?>
<?php get_template_part( ‘components/footer/site’, ‘info’ ); ?>
</footer>
</div>
<?php wp_footer(); ?></body>
</html>Forum: Plugins
In reply to: [Master Slider - Responsive Touch Slider] Slides do not render in page