TouchCoding.net - Øyvind Sæther
Forum Replies Created
-
sorry, try this instead:
.single-post .featured-media { display: none; }This removes the featured media only on the single-posts and not the front page.
To remove the date on the post also, try this:
p.post-date { display: none; }Forum: Themes and Templates
In reply to: How to move menu and cart outside headerHow did you make the code work? Some of the css is remove.
You need a child theme to edit the functions.php file. If you edit storefront theme, all modifications will be remove the next time you update. So try to create a child theme, copy the code into the functions.php in the new child theme and let me know if you get another white screen.
The header image can be fixed by apply some padding:
.site-header { padding-bottom: 1em; }okey, tell me if I understand you right. You want the featured image only in the posts site/homepage where all the posts are listed, but not in the post itself?
You could do like he did in that forum post, but you could also just use css. Like this:
.featured-media { display: none; }To hide the dates on the “posts” page this is the code:
.posts .post-meta-date { display: none; }I think when you talk about the archives, categories and meta under the comment section, you’re talking about the widget area in the footer. These can be changed under Appearance>Widgets. Here you can remove or reorder anything you want.
If I misunderstand anything or you want to remove something else, I might understand it better if you took a picture of what you want/want to change.
Forum: Themes and Templates
In reply to: [Responsive] Hide menu from mobile viewGlad I could help you 😀 If you need any more help just let me know 😉
Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarI´m sorry, but I can’t seem to understand why it isn’t showing. Adding custom css is really easy however and applying the css I provided should solve the problem. I’m guessing you want to customize the theme to your need and you need css for that too. So a custom css plugin isn’t a bad thing to have 😉
Okey. I try installing that theme on a test site and look at the problems your having.
1. I don’t understand what you mean here. There can only be one featured image at one time. Do you mean images inside the post itself. If you only need one image per post, just use the featured image and none inside the post itself.
2. If you just mean the post info and the author info you can use some simple css to remove it.
here is the code:
a.tab-post-meta-toggle { display: none; } a.tab-author-meta-toggle { display: none; } a.tab-comments-toggle { display: none }This will hide the buttons.
3. This can be archive with simple css:
.single-post .post-title { font-size: 2.5em; color: #222; }These are the values on your site at the moment. Change these value to what you desire.
Hope that helped you out 🙂
Forum: Themes and Templates
In reply to: [TopShop] Remove the Title Text in the Slider ImagesGlad I could help you Heatherfish 😀 If you need any more help, I’d be glad you help you again 😉
Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarYeah, im sorry. You are sooo helpful. removing things that helped people, but apparently annoyed one moderator. Thanks for your help… won’t happen again
Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarYeah, I don’t sell any themes or plugins… promoting my site? The link is to a tutorial, nothing more… and yes “Frowned upon”, not “we are deleting any links in your answer, just because we can”
Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarCan you point me to the rule that says I can’t do it like this. NO one else has said this before, only you… and, no “how do i learn css” is not the first question, but when I say apply this css, they ask how…
Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarOkey…? It was only meant as help… I make tutorials on how to use wordpress and it has been accepted before, so I don’t understand why you suddenly won’t allow me to. Again, this was only meant as help and instead of answering EVERY single css related question with how to apply css, I link to a guide on how to do that…
Hi there Seasonsesame! 🙂
I can definitely help you with this, but I need a link to your site first. This makes it easier for me to look at what you need to be changed. Is your site locally or is it online?Forum: Themes and Templates
In reply to: [Rookie] How to remove the Search BarHi there Jaybee1! 🙂
The Customize tab changes depending on what the theme authors allows you to easily customize.But you can use css to remove the search form like this:
#site-navigation form { display: none; }If you need any help with how to apply css take a look at this guide: [Link redacted]
Get back to me if you need anything else 🙂
Forum: Themes and Templates
In reply to: [MH Magazine lite] reorder widgets areas in frontpageHi Centrokehila! 🙂
You can easily rearrange your widgets in Appearance>Widgets. If Your problem is that you want the two 1/3 Width over the 2/3 width, use the home 5 and keep home 2 empty.Forum: Themes and Templates
In reply to: [Responsive] Hide menu from mobile viewHi jbg501! 🙂
It looks like your slicknav becomes active when the screen size is 600px. You can use this to hide the main-nav when the screen size is >600px.Like this:
@media screen and (max-width: 600px) { .main-nav { display: none; } }Apply this css in a custom css plugin or in a child theme 😉 Here is a guide for you: [Link redacted]