bsabath
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Customizr slider title font stylingI want to italicize a part of the title field, like this:
TITLE PART 1 – Title part two
I know how to use CSS to change the look/size of the whole title field (I’m using a child theme to override several formatting elements); this is a little more mystifying.I agree! I notice that if you set a page as the “Posts Page” any other content that was on that page (including its Title) is not displayed. I would like to have a Title as well as other content at the top and/or bottom of my blog page.
Is this really not possible?Forum: Themes and Templates
In reply to: [Customizr] no sidebar in 'Posts' pageIt definitely seems like a bug, but I also was able to kluge a solution by setting:
the global default layout to left sidebar (what I want for my blog),
the posts default layout to right sidebar, and
the pages default layout to no sidebar.The result was a left sidebar on my posts (blog) page. Strange, but successful.
Forum: Themes and Templates
In reply to: [Customizr] Slider Text PositionI wanted to shrink the slider text, and move it to the bottom right corner. This code did the trick:
.carousel-caption { max-width: 40%; /* was 60% */ margin-left: 2%; /* was 11% */ padding: 2%; /* was 5% */ position: absolute; left:60%; bottom:0px; /* hugs the bottom of the slider */ } /* shrink the Title field */ .carousel-caption h1 { font-size: 24px; /* was inherited from h1 (38.5px) */ line-height: 1; /*was 1.25 */ } /* shrink the description field */ .carousel-caption .lead { font-size: 16px; /* was inherited from lead (21 px) */ line-height: 1; /* was 1.25 */ }Forum: Themes and Templates
In reply to: [Customizr] Drop down menus on tablets and smartphonesThanks for your suggestion, ElectricFeet. I had sort of the opposite problem as the person in that post, but it led me to try something that solved my problem. FYI – here was the situation.
I had this menu item:
Media
– Headshots
– Reels
– Photo Galleries“Media” was not a page/link/post at all, just a dummy label I created using the “new page” tab, and blanking out all the link info. It worked fine on a computer, even after I added “hover” code, to cause automatic drop-down. But it didn’t work on mobile devices (with OR without the hover code).
I fixed it by creating an ACTUAL Media page, and using that as the top level menu item instead of the dummy label. Voila! Everything worked, (again, with or without the hover code) on both computers and mobile devices. The only downside is now I have a “Media” page that has no real purpose (Of course I’ll just put the sub-menu links on it, in case someone gets there accidentally, by right-clicking on the top-level item).
Was creating a dummy label as a top menu item illegal (it seemed like a good idea to me!)?
Thanks again for your responsiveness!