LebCit
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding additional widgetized areaHello @skilgore
You should always search the codex !
Widgetizing Themes
If you need more help don’t hesitate.SYA π
Forum: Themes and Templates
In reply to: [Sela] How do I change the white background?Forum: Themes and Templates
In reply to: [Sela] How do I change the white background?Hello @keidrews
First of all, you should use a child theme or a custom css plugin for you customization, because if you don’t you will lose all your customization on the next update of the theme.
So to change the main backgroud color use this :
.content-wrapper { background: #E2D6B3; }SYA π
Forum: Themes and Templates
In reply to: [Make] Only one menu/hide secondary menu?Hello @alyssawible
This can be done in many ways.
Let’s try the really easy way.
In your backend, create an empty menu and assign it to the menu location you wish to hide.SYA π
- This reply was modified 9 years, 6 months ago by LebCit.
Forum: Themes and Templates
In reply to: [Founder] Turn off next/previous in postHello @adrianciolea
There are several ways, but I’m assuming that you are using a child theme, because if you don’t all your customization will disapear on the next update of the theme !
So let’s do it the easy way with CSS in your style.css file of the child theme
.further-reading { display: none; }SYA π
Forum: Themes and Templates
In reply to: Creating a Child Theme from a Modified Existing ThemeHello @gaurav_kashyap
For simplicity, I’ll recommend you to use a plugin.
Child Theme WizardSYA π
Forum: Themes and Templates
In reply to: [Appointment] Search boxHello @gofal
First, for any custom changes it’s VERY IMPORTANT to create a child theme.
seconf, to display the default search form, just put in header.php the folowing code :
<?php get_search_form(); ?>
Of course, you’ll have to choose where you want to diplay it, then if you want to add custom style(s) to your form.SYA π
Forum: Themes and Templates
In reply to: [Sydney] Strange problem with editing headerHello @creeser
Could you paste your code here ?
Also, give a link to your site, it will be easier for anyone to help you.SYA π
Forum: Themes and Templates
In reply to: [Sela] Change logo on mobile devicesHello @bubdadigger,
In Sela theme the only CSS rule for the logo is .site-logo
So, to replace it on window resize their is quite a lot of methods…
Keeping it simple :@media screen and (max-width:600px){ .site-logo{ width:25%; } }You can of course, since you have a child theme, have two logos (desktop/mobile)
See this for an example.SYA π
Forum: Themes and Templates
In reply to: Panoramic Theme–Editing the FooterForum: Themes and Templates
In reply to: [Oria] Header Overlay Removal?Hello @megansnedek,
Yes it’s very possible
Try this.top-bar { border-style: none; background-color: transparent; }Note that you should use a child theme for your customization or a custo css plugin.
SYA π
Forum: Themes and Templates
In reply to: [Storefront] Storefront Menu current item color isnβt workingForum: Themes and Templates
In reply to: [Sela] Change logo on mobile devicesHello @bubdadigger,
If you give us a link to your site it would be more easier to help.
Take a look here How to have a different logo on mobile view wordpressSYA π
Forum: Themes and Templates
In reply to: [Micro] How to get rid of post titles in single page site?Hello @olinobnizov,
The first page title in your screen shot is a menu.
The second is the title of your Post/Page.If you want to remove the first, you can remove the menu from the backend or create an empty one and assign it π
If you want to remove the second :.entry-title { display: none; }Please note that you should use a child theme for your customization or a custom css plugin.
SYA π