Kevin
Forum Replies Created
-
In order to line up the breadcrumbs on the contact page, this CSS should help:
.page-template-default .content-wrapper { padding-top: 22px; float: left; } @media screen and (min-width: 1020px) { .widget-area, .content-area { padding-top: 50px; } }It looks like @sacredpath has responded to your other question.
@luttymoreira, I took another look at http://fotofamiliabcn.com/servicios-fotograficos and found that you were able to fix the full-width pages.
If you still have any questions about the Goran theme, please let us know.
Thanks for the update. If you want to try to keep the content consistant, another possible solution is to adjust the padding of
.hero.with-featured-imageForum: Themes and Templates
In reply to: [Forever] Removing connection with featured images and sliderThe Featured Image is displayed with either the
the_post_thumbnail();or the
get_the_post_thumbnail();functions.http://codex.ww.wp.xz.cn/Function_Reference/the_post_thumbnail
http://codex.ww.wp.xz.cn/Function_Reference/get_the_post_thumbnail
It looks like you’ve already made some changes to the template, so it’s difficult to tell you definitively, but it’s likely one of the post thumbnail functions need to be added to the
content-single.phpandcontent.phpfiles.Have you tried floating the content left?
.page-template-default .content-area { float: left; }Forum: Themes and Templates
In reply to: [Fictive] "Continue reading" does not translateUpdate:
When Deutsch is chosen during installation, WPLANG is set to de_DE in the
wp_optionstable. The .mo and .po files are named de.mo and de.po, so they are not country specific. In order to use the theme’s translations, the language file names need to match the WPLANG value.The language files for the Fictive theme can be found in this folder:
../wp-content/themes/fictive/languages/
If you update the file names to de_DE.po and de_DE.mo, the theme’s translations will load.
The alternative mentioned above is another alternative.
If you have any other questions, please let us know. Thanks!
Forum: Themes and Templates
In reply to: [Fictive] "Continue reading" does not translateIt doesn’t look like the theme’s de language files are being loaded. I’ll look into this further, but in the meantime they will load if you copy the de.mo and de.po files from:
../wp-content/themes/fictive/languages/
And paste them into:
../wp-content/languages/themes/
You’ll also need to rename them to fictive-de_De.mo and fictive-de_De.po
Please let me know if that helps. Thanks!
Now that you’ve changed it to 600px, I see the issue. Is there any other custom CSS that you’ve added to the site? Also, what page template are you using for the contact page?
Please let me know and I’ll take another look. Thanks!
In my browser I was able to increase it up to 600px wide without any issues. Can you try changing it again?
Forum: Themes and Templates
In reply to: [Pictorico] Replacing Header Text with a Logo, Responsively.Great! Thanks for the update.
Try checking the .content-area width for that page.
If you also want to remove it from the parent pages (this excludes the home page), you can change the CSS
.page-child .hero.with-featured-image, .page-parent .hero.with-featured-image { display: none; }It there are any static pages that aren’t child or parent pages, you’ll need to add their individual page-id to the CSS to remove the header image. In order to find the page-id, you can inspect the site using your browser tools. Here a guide on finding your theme’s CSS:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
@luttymoreira, Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.
An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.
As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.
@luttymoreira, do you want to completely remove the large featured image on the child pages? If so, you can hide it with this CSS:
.page-child .hero.with-featured-image { display: none; }However, this disrupts the breadcrumbs, so you’ll also need to shift them down.
You can hide the “Read More” button with this CSS:
.more-link { display: none; }With this change you may need to adjust the padding of the grid
Forum: Themes and Templates
In reply to: [Pictorico] Replacing Header Text with a Logo, Responsively.Hello,
You can add media queries to your CSS to target smaller devices. If you’re not familiar with media queries, these guides have more details:
https://developers.google.com/web/fundamentals/layouts/rwd-fundamentals/use-media-queries?hl=en
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries