Rough Pixels
Forum Replies Created
-
Forum: Reviews
In reply to: [Alurra] Really Nice Theme!Weird I didn’t get a notification of your review. I wanted to say thank you for your comments and 5-star rating for Alurra.
Hopefully, since you posted this almost 2 months ago, you’re still using and enjoying it 🙂
Forum: Themes and Templates
In reply to: [Storytime] Change page layout and add sidebar to article blockFor CSS and your block; you can add a class to the block via the Advanced setting in the block editor. Selecting the block in question, on the right side open the Advanced settings, and enter in a class name (whatever you decide to name it). Then, you can create the styling for that class. When creating a reusable block, I’ve never tried this, but if you add a class to it and then save it as reusable, it might hold that class…? Otherwise, each time you use it, you might have to re-add the class to it each time.
Hopefully, that made sense?
For sidebars having different widgets on different posts/pages, the best way is to use a plugin that lets you publish widgets to select posts/pages. I wrote an article about this before–turned out to be a popular one. This might help…
For Rough Pixels, this site uses the Widget Options plugin.
Forum: Themes and Templates
In reply to: [Storytime] Landing page, dropdown menuThanks for the link!
I’m not sure if this is what you are looking for, but if you want the splash content (currently in middle) to reposition to the top, copy and paste this into the Customizer’s Additional CSS tab:#splash { justify-content: start; }Forum: Themes and Templates
In reply to: [Storytime] Landing page, dropdown menuIs it possible to get a link to where your site is? I might be able to give you a solution for positioning your title and description.
Forum: Themes and Templates
In reply to: [Alurra] Removing the page name from the top of the pageI see what you are referring to, thanks for the link.
I looked at your custom CSS code you have for this:
.entry-header, .site-header { height: 0px; }Do this instead:
.entry-header, .site-header { display: none; }The header has a margin to it, so even though you set it to 0 pixels in height, the margin still remained. Doing display: none; will hide the whole thing as though it doesn’t exist.
Best Regards,
AndreForum: Themes and Templates
In reply to: [Alurra] Removing the page name from the top of the pageThanks for the link…. the space, you mean above or below the site title (the web address line)?
For the tagline, here is some CSS code you can copy and paste into the Customizer’s Additional CSS tab:
.site-description { display: none; } .home .site-description { display: block; }Hope that helps…
Best Regards,
AndreForum: Themes and Templates
In reply to: [Storytime] Landing page, dropdown menuHmmm…I might need to do some updating with additional info for the tutorial.
You can add a menu just below the title on the splash page. When making a menu for that, you would assign the menu to the Splash Menu location. Then you would just add whatever menu links to whatever you want.
on this tutorial:
https://www.roughpixels.com/documentation/storytime-tutorials/storytime-splash-page/
…when making the menu Splash Page Button, you can add more links to your menu. So, if you want to add links to a couple of articles, this is where you would do it.Note: if you just want the links to be normal without a button style, ignore step-7 under the Splash Page Button.
As for adding a graphic or something, you won’t be able to do that without creating a child theme and then customizing the splash template. In this case, you will only be able to do the menu because it has a precoded location for a menu only (under the site title area).
Hope that helps?
Forum: Themes and Templates
In reply to: [Storytime] Landing page, dropdown menuGreetings!
I’m not sure if you’ve seen the tutorials, or if you still need help, but here is a link to the complete set of Storytime Tutorials:
https://www.roughpixels.com/documentation/storytime-tutorials/
For submenus…WordPress has a tutorial for creating menus, but try this one from our “Common Setup” tutorials:
https://www.roughpixels.com/documentation/common-setup/creating-menus/
Best Regards,
AndreForum: Themes and Templates
In reply to: [Storytime] Customizing StorytimeGood to hear 🙂
Before this thread is closed as resolved, is everything OK?Forum: Themes and Templates
In reply to: [Storytime] Customizing StorytimeFor the first one, copy and paste this into the Customizer’s Additional CSS tab:
#site-branding:after { border: none; } .entry-title:after { display: none; }For the second question:
.main-navigation-menu > li:after { display: none; }For your third question, this is what the current theme’s styling is:
.main-navigation-menu { display: none; font-family: Domine, "Times New Roman", serif; font-size: 0.938rem; font-weight: 400; margin: 0; padding: 20px 0; position: relative; width: 100%; letter-spacing: 1px; list-style: none; text-transform: uppercase; -webkit-box-orient: horizontal; -webkit-box-direction: normal; }From that CSS code, you can see the font family used, size, etc. To override that, simply copy the code and paste it into the Additional CSS tab of the customizer and change the parts you want to change from there.
Hope that helps?
Best Regards,
AndreForum: Themes and Templates
In reply to: [Alurra] Removing the page name from the top of the page@elizwekpe That code part is what would be copied and pasted into the customizer’s Additional CSS tab.
Was that what you were wanting to know?
Forum: Themes and Templates
In reply to: [Prologe Lite] Cover-header not workinghello… That older post with the link, unfortunately, doesn’t let me update it; however, the link to that particular tutorial for the header is:
https://www.roughpixels.com/documentation/prologe-tutorials/front-page-header-image/
Then the CTA:
https://www.roughpixels.com/documentation/prologe-tutorials/front-page-call-to-action/
Let me know if this helps, but if not, if you can give me a link to your site, I can take a look and see what I can do to help you get this setup.
Best Regards,
AndreForum: Themes and Templates
In reply to: [Storytime] Remove paginationGlad to hear you found it…however if you don’t mind me asking, what was the solution that you implemented?
Best Regards,
AndreForum: Themes and Templates
In reply to: [Alurra] Banner Colors different than in PhotoshopThere is an overlay which is used to darken a photo whenever text is sitting on top of the image–this helps make text standout.
It’s done with this CSS:
.has-header-image .site-header:before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; background: var(--rp-header-bg-colour); opacity: var(--rp-header-overlay-opacity); z-index: 2; }You can always add custom CSS to override the opacity (transparency) with:
.has-header-image .site-header:before { opacity: 0; }The 0 makes the transparent layer completely transparent, whereas making it a value of 1 makes it black (the least transparent value). You can also change it to anything between 0 and 1.
For example: 0.3 (which would be 30% transparency). 0.75 would make it 75% transparency.
Forum: Themes and Templates
In reply to: [Alurra] Removing the page name from the top of the pageAh, forgot about the page header has a margin to it.
Take the above code of:
.page .entry-title { display: none; }and make it this:
.page .page-header { display: none; }See if that works better for you?