the.Zedt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Mantra] Presentation Slider not loading imagesWhat is your website URL?
Forum: Themes and Templates
In reply to: [Mantra] My Custom Header Image Isn't Responsive?Is the “Mobile View” option enabled?
Forum: Themes and Templates
In reply to: [Mantra] How to stretch the menu bar?There’s indeed a bug with the > turned into & g t;, but it only affects how the custom CSS is displayed in the dashboard.
The CSS is correctly included on the frontend, so those rules should work.Use Firebug or the browsers built-in dev tools to inspect the applied styling and see how it is processed / overridden.
Forum: Themes and Templates
In reply to: [Mantra] Exclude PAGES from searchThis should work by just placing it in the (child) theme’s functions.php file…
Or you could use a plugin like WP Hide Posts which, despite its name, can also hide pages from appearing in various places.
Forum: Themes and Templates
In reply to: [Mantra] Where are the posts!?“C17. What if I want to use both the presentation page and the blog page?
If you’ve enabled the presentation page and also want to create a blog page (like the default WordPress homepage), create a new page and choose “Blog Template” as the page template. Then add a link to that page in your menu(s) (if it isn’t created automatically).”
Mantra FAQsThe “Category page with intro” is experimental.
The page which uses the “Category page with intro” template and category need to have exactly the same slug and your WordPress needs to be configured to use the %postname% slug.Forum: Themes and Templates
In reply to: [Mantra] How to stretch the menu bar?Use
#access .menu > ul > li > a
to affect the top items of the menu only.
Or#access .menu > ul > li
depending on what you are trying to change.Forum: Themes and Templates
In reply to: [Mantra] Increase columns on page presentationThat’s one of the craziest edit I’ve seen so far. :))))
To move this to a child theme, just copy the theme-frontpage.php file to your child theme’s folder, next to the style.css file.
Then create a functions.php file with the following content:<?php require_once(dirname(__FILE__) . "/theme-frontpage.php"); //Frontpage file ?>
Forum: Themes and Templates
In reply to: [Mantra] My Custom Header Image Isn't Responsive?Are you by any chance using the new (not-responsive) “logo upload” feature instead of the old (now responsive) header background image?
Forum: Themes and Templates
In reply to: [Mantra] Change Comment Background Color or Font ColorNormal state:
.commentlist li.comment { background: #abcdef; }
Hover state:.commentlist li.comment:hover { background: #fedcba; }
Forum: Themes and Templates
In reply to: [Mantra] Increase columns on page presentationUnfortunately, it’s on the complicated side…
To change the column count you’d have to add code in the theme options for you extra columns (requires a separate field that gets filtered/saved/loaded for each image, title, text and read more link).
Then you’d need to add the code to display it on the frontend, and also make the proper CSS changes to fit the new layout.
This will take several man-hours to complete.
Forum: Themes and Templates
In reply to: [Mantra] Bug:Social Media Settings: MailThe bug is still there in the latest 2.0.2. Just make sure there’s no mailto: at all in the email field in social settings when you save, and the link should be correct after that save.
Forum: Themes and Templates
In reply to: [Mantra] mobile-styles.css overrides custom CSSThe mobile CSS is loaded in the footer of the page, to make sure the mobile styling is the absolutely last one that applies so you can’t break responsiveness with absolute sizes unless you really want to ??
Forum: Themes and Templates
In reply to: [Mantra] Mantra update changed tagline?The site title and tagline code changes a bit in 2.0(.x) to fit the new header layout.
Use something like Firebug to inspect the elements and you’ll figure out the new rules to use to make your custom CSS work again.Forum: Themes and Templates
In reply to: [Mantra] Pages in menu navigationYou need to use a custom menu for this.
Forum: Themes and Templates
In reply to: [Mantra] Dividing line between site-title and site-descriptionThat was a design choice. You can use this Custom CSS to add it back:
#site-description { border-left: 1px solid #666666; padding-left: 20px; }
customize the width and the colour.