Balint Toth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Travelify] Static Font Page – Are posts/pages required?Thank you! Here is the css code which will hide it, just paste it under the previous code:
#post-1539 { display:none; }I am afraid that the remaining whitespace cannot be deleted because of the targeting issue, because in current css rules, there is no way to say I want to hide #post-1539’s parent div…
I hope this helps.
Greetings,
BalintForum: Themes and Templates
In reply to: [Pinboard] change position of homepage elementsHello!
I have checked your site. The file which is containing the related css is style.css inside your
wp-content/themes/pinboard/folder. However you should not edit that file directly, because that way if you update the theme or WordPress, your settings will be lost. I suggest you to create a child theme, and inside the child theme’s folder create a style.css file with the proper contents, and paste your css modifications there. I have made a detailed tutorial video on how to create a child theme, which you can check out here [ Moderator note: Please use Codex links when possible and not send send to your own site. ]If you need any help, just drop a line here.
Greetings,
BalintForum: Themes and Templates
In reply to: [Travelify] Static Font Page – Are posts/pages required?No, that is a completely fine way to use WordPress.
Regarding the notification hiding, I have come up with a crazy idea 🙂
At this point there is no way to target the No posts found text from CSS in order to hide it. So I would like to ask you to create a post, with a single space in it’s name and it’s content box, and save that. That post will have an unique id, which we can target to hide it completely. After that, we will just adjust the paddings if necessary.
Because there is no way from my end to tell upfront what ID the post will get, please let me know when you have added that post.
Greetings,
BalintForum: Themes and Templates
In reply to: [Travelify] Static Font Page – Are posts/pages required?It is really interesting, because now the frontpage does not contain any div with a home class…
I would ask, at this point what are your settings? Is it set to show up a static page, and set to a page with no actual content in it? Or you basically don’t have any posts that it could list?
Thank you!
Forum: Themes and Templates
In reply to: [Travelify] Static Font Page – Are posts/pages required?You have to create your child theme beside the parent theme’s folder, not inside of it. So in the themes folder it should look like this:
wp-content themes travelify travelify-childGreetings,
BalintForum: Themes and Templates
In reply to: [Mantra] Extending custom header image colors into bodyWell, it can be done, basically you just need to move the menu up, which at this point interferes, after that if you alter a little bit the logo image, basically you will just have to move a little bit up the sidebar or move a little bit down the central content area.
The issue is, I am not sure how it will behave on smaller screens…Forum: Fixing WordPress
In reply to: Changing link textThank you very much!
I am not sure, but it looks like that the huff.to link is actually inside that page’s/post’s content text, it is not generated by theme (I am thinking this because it actually points to a completely different website).
If you edit that page or post, you should be able to see it exactly in the content as it is visible on the public side.
If that is the case, this is what I would do:1.) Inside the page or post editor, select the link, and copy it.
2.) After the actual link, type in the read more text you would like to appear
3.) Select that text, and click to the insert/edit link button (screenshot here)
4.) In the little popup window, in the URL: textbox, paste the link you have copied, and click OK.
5.) Delete the original link text.Let me know if it helped.
Greetings,
BalintForum: Themes and Templates
In reply to: [Twenty Thirteen] Need to widen text marginsI don’t know… It is a css3 property, but everywhere it says that Safari supports it…
I am sorry, I don’t have any more ideas…
Forum: Fixing WordPress
In reply to: Changing link textI think you are using some under maintenance plugin, because I am getting this: Screenshot
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Need to widen text marginsYes, I think the -moz-hyphens relates to Firefox, and the word-wrap to Safari. Did you try my idea above?
Forum: Themes and Templates
In reply to: [Mantra] Extending custom header image colors into bodyOkay, thank you!
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Need to widen text marginsUnfortunately I cannot test it in Safari, but I have made some quick research regarding this. Please try changing
word-wrap: none !important;
to
word-wrap: normal !important;Balint
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Need to widen text marginsActually for me right now it is not wrapping in Firefox.
For me it looks like that the second line of the
.entry-contentis not in your child theme’s style.css, but it may be that it wont show in the code for me just because it is turned off. Screenshot here Could you please check that?And also, I noticed that I have made a mistake in my code, in
-moz-hyphens: none !important;;there is only one semicolon needed at the end of the line. I apologize for that.Forum: Themes and Templates
In reply to: [Travelify] Static Font Page – Are posts/pages required?Hello!
You should be able to hide it with this custom css code:
.home #content { display: none; }But make sure it doesn’t hide anything else on other pages (it shouldn’t, but just in case…)
You should include this css code inside a child theme, this way ensuring that your changes won’t be lost when you update your theme or WordPress. I have made a video tutorial how you can create one:[ link redacted, use this one instead http://codex.wordpress.org/Child_Themes ]
If you have any more questions, just drop a line here, I am happy to help.
Greetings,
BalintForum: Themes and Templates
In reply to: [Twenty Thirteen] Need to widen text marginsSorry, I have missed that. Actually for me it happens only under Firexox (Firefox Screenshot), not under Chrome (Chrome screenshot). I have found the css responsible for that, you can turn that off this way:
.entry-content { -moz-hyphens: none !important;; word-wrap: none !important; }I hope this helps.
Balint