billw16
Forum Replies Created
-
Forum: Plugins
In reply to: [Subscribe to Category] can logged in members have mail address preset?Any update on this?
I’m looking for exactly this same feature, logged in users shouldn’t have to enter their email. Other than this, your plugin looks like what we need.
Thanks
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityThanks again Fotis.
Love the theme and really appreciate your support! Above and beyond! I give you 5 stars (review posted)!
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityJust in case others have also wanted to increase usable width of some pages, thought I’d share the other things I’ve done…
I enlarged the single post template by removing the sidebar and centering the content with the two changes below to single.php:
ADDED ‘col-md-offset-2’ (near top of page):
<div class=”col-md-8 col-md-offset-2″>
REMOVED (near bottom of page):
<div class=”col-md-4″>
<?php get_sidebar(); ?>
</div>This gives single posts more white space & they look less cluttered, which is better IMO, but there isn’t any more width to the actual text on the page unless you make the changes mentioned above by Fotis.
I also enlarged the Fullwidth Template so the content (a calendar in my case) extends more fully across the page – this significantly increases the width of the content area without any other changes.
To do this, I added the following to style.css:
.page-template-template-fullwidth #site-content .col-md-8.col-md-offset-2 {
margin-left: 0px;
padding: 0px 5%;
width: 100%;
}(I got this from a post by paulwpxp)
Hope that’s helpful.
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityFotis, you are great! Thanks so much, that works perfectly!
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityOk, yes that does allow the page content to enlarge more and still preserves the responsive feature. However, it causes the background to go completely transparent when resizing down to anything smaller than approximately the previous max size (~750px or so). Strange…
Any thoughts on that?
Forum: Plugins
In reply to: [Events Made Easy] Holidays Not Showing in CalendarAhhhhh, ok now it works!
Thanks Much!
Forum: Plugins
In reply to: [Events Made Easy] Holidays Not Showing in CalendarOk, well that’s actually my exact question: How am I supposed to use it?
Looking at the doc under ‘Holidays’ all it says is this:
When used in the calendar shortcode, a holiday lists can show the holiday info in the calendar if the format contains at least the holiday name
But, then under the Calendar Shortcode [eme_calendar], the doc says absolutely nothing at all about the use of holidays!
My Holiday list does contain the holiday name but nothing shows on the calendar (full cal or sidebar).
So, would you mind explaining how I can get the holidays to show on the calendar?
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityNow, the only other thing I’m trying to do with this theme is to increase the maximum width of the page size for larger monitors.
Using the same entry as above but adding max-width: 1200px (for example) or using a % doesn’t increase max width of the pages, although adding something very small like 400px does limit the width.
#page >.container{
background:rgba(255,255,255,0.4);
max-width: 1200px
}Any suggestions for this?
Thanks.
Forum: Themes and Templates
In reply to: [Olsen Light] Content Area Background Color and OpacityAhh Perfect! I didn’t know about css selectors and couldn’t find the right place to put the background property.
Thanks so much Fotis! That’s exactly what I needed, implemented it last night and the site looks great!