mjhead
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Duena] Slider ProblemsHi @loginu,
you made any changes in your theme files?Forum: Themes and Templates
In reply to: [Duena] Having trouble with font colorsHi, @hi.cinta,
when you successfully install and activate your child theme, you need to add into file style.css (Use Appearance -> Editor for this):a { color:#any_color_you_want; } .breadcrumb { border-top:#any_color_you_want; }Note: This code will work only if you add it into style.css in your activated child theme.
One more note: If you use child theme example from this topic you need to delete from this example folder post-formats.Forum: Themes and Templates
In reply to: [Duena] Slider Problems@insite.ryan
1170*450. If image larger – it will be resized to this dimensionsForum: Themes and Templates
In reply to: [Duena] Slider Problems@insite.ryan,
please, try to add several posts for testing (upload new featured images, not select from earlier uploaded images)Forum: Themes and Templates
In reply to: [Duena] SliderHi, please, change your code to
/* = Top search ----------------------------------------------- */ .flexslider .slides > li { position:relative; }Because you insert it into CSS comment, thats why it not work
Forum: Themes and Templates
In reply to: [Duena] Slider ProblemsHi,
Slider shows featured images from blog posts. So you need set up featured image for your post and it will be shown in sliderForum: Themes and Templates
In reply to: [Duena] How to pull images for the SliderHi,
Slider shows featured images from blog posts. So you need set up featured image for your post and it will be shown in sliderForum: Themes and Templates
In reply to: [Duena] SliderHmm… Are you sure that doing all right? I watch on your slider with Firebug in Mozilla and can’t find this code.
Forum: Themes and Templates
In reply to: [Duena] Font Awesome icons doesn't show upHi,
Looks like font file not loaded. Maybe, some problems with server configurationForum: Themes and Templates
In reply to: [Duena] problem with center contentFirst off all I recommend you to create your own child theme for Duena (for safety editing template files, you can find tutorial here – http://codex.wordpress.org/Child_Themes).
Then, if you need centered content only on single post page – copy into your child theme file single.php, open it in editor and find string
<div id="primary" class="span8 <?php echo esc_attr( of_get_option('blog_sidebar_pos') ) ?>">. Then change it to
<div id="primary" class="span12 <?php echo esc_attr( of_get_option('blog_sidebar_pos') ) ?>">
If you need all pages with center content – find all files wich contains this string and replace it with<div id="primary" class="span12 <?php echo esc_attr( of_get_option('blog_sidebar_pos') ) ?>">But it’s not good idea, because a lot of styles in theme adapted to two columns structure and some elements after that manipulations can look not good
Forum: Themes and Templates
In reply to: [Duena] SliderHi,
thanks for finding that.To fix it you need add next code to style.css (i saw you have already customized your site, so don’t explain how add code to style.css;) ):
.flexslider .slides > li { position:relative; }Hi
First, before making any changes, be sure to create and activate a child theme for Duena. The WordPress Codex has a great tutorial: http://codex.wordpress.org/Child_Themes.Then go to Apperance -> Editor and add next code to style.css:
.post_type_label, .post_date { display:none; }Forum: Themes and Templates
In reply to: [Duena] Hidden colors?It’s almost on and it’s last “but”. There is a little bug, but it’s hard to explain for me because my English not very good, but i’m try… When you download archive with child theme from Github it’s strucrure was Duena_child-master.zip -> Duena_child-master -> (child theme files). Then, when you upload it to you website and unzip you got next structure Duena_child-master -> Duena_child-master -> (child theme files). And because of this folders duplication your child theme works wrong – file style.css in child theme can’t find style.css in parent theme. You need to reinstall child theme with next files structure WP themes directory -> Duena_child-master -> (child theme files).
style.css in child theme is short becase it contains only custom child theme styles, main styles remained in parent theme
Forum: Themes and Templates
In reply to: [Duena] Hidden colors?This could occur when you unpacked the archive. Structure of child theme must be – duena_child-master/style.css for correct work
Forum: Themes and Templates
In reply to: [Duena] Hidden colors?oh, seen that you have duplicate folders – duena_child-master/duena_child-master/