emilyTK
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ExpressCurate] RSS feed icon next to search b arStep 1: Make a child theme.
Step 2: Find a plugin.No problem, I sure hope I helped.
Lol, it’s questions like these that go into the “Plugins and Hacks” forum. 🙂
Anyways, you’ll want to put them CSS bits into style.css.You don’t even need to touch functions.php for these kinda things, and I’d recommend you just leave it be unless you are absolutely positive that you know exactly what you’re doing.
Oh no, I’d never ask you to edit your theme directly. It’s weird that adding this to your custom CSS didn’t do the trick though, since it worked for me.
Have you tried asking around the “Plugins and Hacks” subforum about your problems with creating child themes? I’m sure those guys over there will gladly help you out with any problem whatsoever.
I have a feeling your problem with those images might just be intertwined with this.
On the other hand though, to be honest, Twenty Fourteen is really not what one would call a customisation-friendly theme.Forum: Themes and Templates
In reply to: Login , Register and I agree pagePia, I’d really love you to be a bit more specific if you could. Or, you could ask around in a Danish WordPress forum.
I’m not sure I even understand what you’re trying to do on your website. Nobody here could answer your questions like this.(Also: Netflix, for one, are willingly paying engineers so that they would break Netflixes services. So you might have done WordPress a favour.^^)
Forum: Themes and Templates
In reply to: Foundationpress – Parent or child?Since its purpose is for you to be able to customise your theme, it makes sense to make a child theme.
Making a child theme is really easy, and it helps you avoid a lot of trouble in the future. Don’t be afraid of doing it. 🙂For one, the
figureelement your images are embedded in is limiting their width.
You should set:figure[id^="attachment_"] { width: inherit !important; }And since you’re working in a responsive theme, I’m recommending not to set the images itself to a fixed value like
700px. (Except if you do it in media queries.)
If you want your images to be as wide as your column, you need to set this:.wp-caption img[class*="wp-image-"] { width:100% !important; }Alternatively, if that isn’t what you were asking for, try fiddling with
inheriton the image, too, instead.Also: I’d make a case for child themes, since you said you don’t want to mess with the code. Well, child themes are exactly the way to go when you don’t want to mess with the code.
Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overThanks, and you!
And make sure to mark this thread as resolved. 🙂Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overSweet, alright!
One more thing: Your thumbnail backgrounds depend on your slider. If you’ll choose to deactivate your slider plugin in the future, make sure to save or copy the slider background image in
http://www.neddanagel.nl/wp-content/themes/Interstellar-child/images/slider_bg.png, so you can set a new path for your thumbnail titles.(Edit: I just noticed that you made a child-theme, so you might just be fine. Sorry for the confusion.)
Forum: Themes and Templates
In reply to: How to Show Featured Image in PostsYou can either use this plugin for shortcode:
https://wordpress.org/plugins/add-post-thumbnail-shortcode/…or follow the instruction you find in the description of the plugin (requires making a child theme).
Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overYou’re absolutely right: My first response works for your slider only, my second response for your thumbnails.
Let’s worry about what you’re doing later-on later-on. Like I said: It all depends on the context. I need to see the HTML output you will be working with later-on, so that we can figure out a proper solution.
So as soon as you have your “later-on images” set up, just come back to me and show me what you have.Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overIt does, since the slider is providing you with the right HTML that outputs the image caption. In order to achieve the same effect for your thumbnails on the page you just provided, you have to pull the image titles onto your images, like so:
.ngg-gallery-thumbnail { position: relative; } .ngg-gallery-thumbnail span { background-image: url('http://www.neddanagel.nl/wp-content/themes/Interstellar-child/images/slider_bg.png'); line-height: 1em; margin-bottom: 3px; padding: 10px 20px; position: absolute; bottom: 0; left: 0; right: 0; }And there you go.
Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overI do.
It would help a lot to know which images you’re relating to in effect, though, since it all depends on the context.Forum: Themes and Templates
In reply to: Title in slider not only when you mouse-overYup, try putting this:
.slide-caption{ opacity: 1 !important; }It goes into your custom CSS.
Forum: Themes and Templates
In reply to: Theme for user/admin interactionGood luck! 🙂