Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle
Search Results for 'Page'
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Accordion Styling
July 21, 2016 at 6:03 pm #104407I suggest you add a custom class. Like desktop-behind-header to each place you want this negative margin. this gets placed in the widget class. Then remove your added margin.
Then in your theme options > custom css you would add this: (I already did this for you).
@media (min-width: 992px) { .desktop-behind-header { margin-top:-50px; } } @media only screen and (device-width: 768px) { .desktop-behind-header { margin-top:0px; } }The about page is an example you can copy from.
Ben
In forum: Pinnacle ThemeUsing the homepage layout manager (in the Pinnacle theme), I am displaying the “icon menu” and “latest blog posts”. I would like to decrease the white space between these two elements to keep things tighter. Does anyone know if this is controlled in theme options or is there CSS I can add to control the white space.
Thanks in advance!
Elijas
In forum: Virtue ThemeTopic: Mobile Home Page
In forum: Virtue ThemeHi guys,
The testimonial part of the theme works pretty well for my needs. I would like to make a couple of suggestions for your consideration. Please let me know if there are ways to do any of these with existing features.It will be nice to have separate fields for the post title and the contributor’s name. Right now, the title field is used as the name in the slider and grid. The testimonial form also puts the name field input into the title. But on the single testimonial page it is used like a title. Having the ability to have a meaningful post title would be helpful in some cases.
Not display the generic avatar icon when there is no featured image. (I can turn the div off using css, but then any featured images are turned off too. If I just turn off the icon, it leaves a blank before the text.)
It will be helpful to have an optional, not-displayed contact field for each testimonial. Sometimes, when I receive a testimonial, I would like to follow up, requesting a photo, for example.
Is there a way to add content after the grid on a testimonial grid page? I didn’t see a way.
For the slider widget, have an option to turn off the display of the title.Thanks.
KeithIn forum: Virtue ThemeIn reply to: Accordion Styling
July 21, 2016 at 5:00 pm #104399? I’m still confused why you have a negative margin in pagebuilder at all? Does that not makes sense that with a negative margin any number your slider will be behind the header on mobile?
If you want to force this behind the header on desktop then you need to add css using a media query so it only effects desktop and set the negative margin to the height of your desktop header?
Ben
In forum: Pinnacle ThemeIn reply to: Upgraded Now Icons Don't Show on Home page
In forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: Accordion Styling
In forum: Virtue ThemeIn reply to: Portfolio items not longer found
July 21, 2016 at 3:44 pm #104371Hey,
Lets be clear polylang + pagebuilder = broken custom post type pages. Doesn’t have anything to do with the theme or which custom post type.
I’ve let the plugin authors know about this and they confirmed it’s an issue and also that it effects all custom post types. Not just virtue’s portfolio.
You can use pagebuilder 2.0.7 or not use pagebuilder at all if you need polylang support. Pagebuilder is not required. There are no required plugins.
Ben
In forum: Virtue ThemeIn reply to: Show slider in all pages?
In forum: Virtue ThemeTopic: Show slider in all pages?
In forum: Virtue ThemeIn reply to: Portfolio items not longer found
In forum: Pinnacle ThemeIn reply to: Woocommerce Add to Cart button not showing
July 21, 2016 at 2:41 pm #104355Ok found the login… I don’t get what the issue is I placed the shortcode right on the page and it worked fine.
In forum: Virtue ThemeIn reply to: Accordion Styling
July 21, 2016 at 1:26 pm #104339On the page above I see this css:
@media (max-width: 768px) { .container { padding: 0; } }and if your going to remove padding to the container then the negative margin on the row will still out, even though mains padding brings it back that creates “space” in the page.
Just chnage your css to this:
@media (max-width: 768px) { .container { padding: 0; overflow: hidden; } }In forum: Virtue ThemeIn reply to: Accordion Styling
July 21, 2016 at 1:17 pm #104336So all I needed all along was to set the row to Full Width Stretched and put this in the widget CSS
margin-left: -15px; margin-right: -15px;Thanks for taking the time to explain all this. It works perfectly now.
On a separate note, you mentioned in an other post that I needed to jump back to the previous version of Page Builder to eliminate the right side padding on mobiles that can appear when one drags the page with ones finger. I did just that, but it hasn’t fixed the issue.
Jumped back to this version as per your advice: https://downloads.wordpress.org/plugin/siteorigin-panels.2.4.9.zip
Any other ideas what might fix this isssue?
Thanks again!
In forum: Pinnacle ThemeMy request refers to the symbol menu below the slider at my homepage: https://schreier.co
In forum: Pinnacle ThemeI really like the pinnacle theme with exception of the circle layout of the “Symbolmenü” (so the german wordpress-translation) of the main page. Instead of that I would prefer the layout of the symbol menu of the virtue theme with a little modification. The standard layout of virtue is a light grey rectangle with symbol and text inside. But the light gray and the white characters are not legible. I would prefer a middle to dark grey rectangle with symbol and text. And with mouse over it should have the main colour of my page wich is a special red. Is there a opportunity getting the virtue code for the main page symbol menu for my page?
Thanx in advance.
In forum: Virtue ThemeIn reply to: Accordion Styling
July 21, 2016 at 11:33 am #104281ok, starting to make more sense.
when adding css into pagebuilder you are only ever effecting that one widget container. And correctly adding css should be like this:
padding-left: 5%; padding-right: 5%;You don’t need to add a class (because it’s not being used) and becuase it’s only a css box to effect that widget. So to be clear the widget css box is not a custom css box for your site.
Now becuase of site origins system it was already stripping the css down removing all the classes and brackets you were adding. but it’s really best to understand it’s purpose and not add that stuff to begin with.
Now it’s still being applied you set it to 5% and thats 5%. The issue is by making the .main class a margin of 0 you are effectively pushing your content 15px off both sides of the screen. Main should have a padding of 15px becuase the class just above it has a negative margin of 15px (this is how the bootstrap framework works.
So simply remove this from your css:
.john-smith .main { padding-right: 0 !important; padding-left: 0 !important; }Ben
In forum: Virtue ThemeIn reply to: Removing White Space
Thanks for the CSS Kevin. ^_^
Unfortunately, I tried with 0px, but it didn’t really make much difference.
Looking at the ‘Inspect’ for the page, the real problem seems to be this line ‘<footer class=”single-footer”>’ which has a margin-bottom of 25px and a padding-bottom of 25px. If i adjust those (with Google Developer tools) it looks much better.
If I could adjust those figures really in some way, then it would solve the whitespace problem entirely.
In forum: Virtue ThemeJuly 21, 2016 at 11:22 am #104275Hey,
Becuase this runs through javascript it’s a bit more tricky then some css.. I’ve thought some and here is one option.If you added this js into the page content it may work for you.
<script type="text/javascript">jQuery(document).ready(function ($) { $('body').attr("data-sticky","1"); $('body').removeClass("notsticky"); $('body').addClass("stickyheader"); }); </script>Ben
-
AuthorSearch Results


