mjhead
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Duena] Change The Search Box Pink Glow ColorHi,
This code in bootstrap.css file. You can create your own child theme for Duena and rewrite needed styles there with next code (for example):#top-search .input-search:focus { box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 4px #F7941A; }Top line it’s not a part of background – it’s separate line. To remove it add to style.css in child theme:
.page-wrapper:before { display:none }Forum: Themes and Templates
In reply to: [Duena] RSS feed errorHi,
Can you please be more specific – what exactly you try to do – add RSS widget, or add RSS link to Author Bio block in sidebar?Forum: Themes and Templates
In reply to: [Duena] font sizeAdd to CSS in your child theme
h1.entry-title { font-size: what you need }Forum: Themes and Templates
In reply to: [Duena] slider speedThis code must looks like:
<script type="text/javascript"> /* <![CDATA[ */ jQuery(window).load(function() { jQuery('.flexslider').flexslider({ animation: "<?php if (of_get_option('sl_effect') != '') { echo of_get_option('sl_effect'); } else { echo 'fade'; }; ?>", direction: "<?php if (of_get_option('sl_direction') != '') { echo of_get_option('sl_direction'); } else { echo 'horizontal'; }; ?>", slideshow: <?php if (of_get_option('sl_slideshow') != '') { echo of_get_option('sl_slideshow'); } else { echo 'true'; }; ?>, controlNav: <?php if (of_get_option('sl_control') != '') { echo of_get_option('sl_control'); } else { echo 'true'; }; ?>, directionNav: <?php if (of_get_option('sl_direction_nav') != '') { echo of_get_option('sl_direction_nav'); } else { echo 'true'; }; ?>, slideshowSpeed: 7000, animationSpeed: 500 }); }); /* ]]> */ </script>Forum: Themes and Templates
In reply to: [Duena] 5 questionsHi
Thanks for detailed advice. Try to answer:1) We use only post items in Blog, Portfolio and Slider, because they are supported by each wordpress theme and your content will not be lost if you switch themes. If we, for example, will use custom post type for Portfolio, portfolio posts will be lost when you switch Duena on other theme. Exist other methods to separate Blog, Portfolio and Slider from each other and we will try add some in future updates.
2) Yep, portfolio template needs to improvement, it’s also in planning for future updates
3) By default slider’s dimensions is 1170×450. Maybe you need to regenerate thumbnails or load larger images for slider.
4) Yep, as I said, portfolio template needs to improvement and option for disabling title possible can be one of them
5) If I understand you in right way, one box for standard page content it’s most optimal decision, because user can add to page a lot of different elements, and manually wrap each other into box – it’s not the best practice, wrap it automatically – also not good, because user can add some shortcodes or custom content and it will not be wrapped
Hope that’s answers was helpful for you 🙂
Forum: Themes and Templates
In reply to: [Duena] font sizeHi,
First of all – create your own child theme for Duena and use it for all customizations, because your changes will be lost when the theme is updated, if you modified theme files.
Then use Chrome’s or Mozilla’s firebug to find element you need and rewrite it’s styles in child theme.
For example, with Firebug we can find, that title of the article, it’s <h1 class=”post-title”>, so we add to child theme’s style.css:.post-title { font-size:20px; }With this method you can edit almost all CSS.
Forum: Themes and Templates
In reply to: [Duena] Pink linksHi
Yep, it’s a little fail with this colors. By default some styles located in bootstrap.css, this styles you can’t find in main stylesheet. You can rewrite this colors in your child theme’s style.css with adding additional selector, for example:body a { color:#f00; }It’s not the best practice, and we try to find some solution in future updates.
Forum: Themes and Templates
In reply to: [Duena] slider speedHi,
You can rewrite in your child theme for Duena file slider.php and add needed parameters to slider initialization (it located at bottom of slider.php in <script> tag).
Speed parameters is:
slideshowSpeed – Integer: Set the speed of the slideshow cycling, in milliseconds
animationSpeed – Integer: Set the speed of animations, in millisecondsForum: Themes and Templates
In reply to: [Duena] Slider pulling from posts. What about Pages?Hi
No, at this moment slider can gets images only from posts, maybe we add some variations in future updatesForum: Themes and Templates
In reply to: [Bueno] Where do I find these images/icons?Hi,
This is Font Awesome icons, not images, so you need to edit appropriate CSS.Forum: Themes and Templates
In reply to: [Bueno] problem with featured imageHi.
You found a right part of the code, but, when you change this values, already existing images would not changed, because they are already cropped with old dimensions, to resize this images you need to regenerate your thumbnails – this plugin can help. Also you need check your uploaded images initial sizes – if it are smaller, than appropriate theme image size dimensions – image will not be cropped for this size and paste into page with real size.P.S. Also I recommend you to create your own child theme for Bueno and make all possible changes in child theme.
Forum: Themes and Templates
In reply to: [Duena] Remove image posts from home pageHi.
Enable or disable featured images for single post or for posts on blog page you can at Appearance->Theme Options->Blog.Forum: Themes and Templates
In reply to: [Bueno] Remove "Get Social"Hi,
You don’t need CSS for this reasons – just go to Appearance->Theme Options->General, remove values from fields Sidebar socials block title, Twitter URL, Facebook URL etc. And then save optionsYep, you can do it – just go to Appearance->Theme Options->Blog and set to No options Show featured image on Blog page and Show featured image on Single post page
Hi, related posts shows featured images, if post hasn’t featured image – will be shown placeholder.