mjhead
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Duena] Change Background ad Pink LineHi,
For changing background you have option at your admin panel (Appearance->Background). For change pink line at top of page you need to edit your style.css, find next code.page-wrapper:before { position: absolute; content: ""; left: 0; right: 0; top: 0; height: 6px; background: url(images/page-top-bg.jpg) no-repeat center 0 #ff5b5b; }and edit it like you need.
Note, if you will be make any changes don’t forget use child themes for it. You can find great tutorial here http://codex.wordpress.org/Child_Themes.Forum: Themes and Templates
In reply to: [Duena] Creating completely blank pageIf bluehost is your hosting provider, yes, you need to create this file in Duena theme directory in your file manager at control panel (or via FTP), file must be in directory wp-content/themes/duena/ if you create file in this directory and insert code from github into it, in Template dropdown must appeare template Blank Page, i tested it, it works
Forum: Themes and Templates
In reply to: [Duena] Creating completely blank pageHi, @beattyandrew
As I say in my previous post, you need to create e new page template. Let’s go step by step:
1) Create in your theme directory blank file, named for example blank-page.php, then open it for editing
2) Copy php code, which you can find here and paste it to created file in your theme directory and save this file.
3) Create new page in your dashboard, in the Edit Page screen you can find Page Attributes box – find there Template dropdown and select Blank Page template (you need to add new page or open existing for editing only after creating file with page template)
4) Modify your content and publish this pageForum: Themes and Templates
In reply to: [Duena] Portfolio of a specific category?Hi,
thanks for your review. This option is likely will be added with next update. If this option strongly need you right now, i think i can do it for you during this weekend (without global theme update, just modify few files)Forum: Themes and Templates
In reply to: [Duena] Slider Image Not ShowingName and Slug may be different
Forum: Themes and Templates
In reply to: [Duena] Slider Image Not ShowingHi,
Seems like you insert into Category field in theme options name of category, but this option requires slug of category, and looks like the slug of this category is artikel-santo-paulus. Try to replace it in optionsForum: Themes and Templates
In reply to: [Duena] 2 Errors (Slider/Categorytext and Load slow)I’m glad I could help you 🙂
Also I recommend you to add next code into your style.css:
#slider-wrapper { position: relative; z-index: 1; }It also will be added in next version and fix small bug with drop-down menu (now it could drop below slide’s caption)
Forum: Themes and Templates
In reply to: [Duena] 2 Errors (Slider/Categorytext and Load slow)Hi,
Duena theme use WP core bundled jQuery and it works fine by default, no scripts which needs jQuery are not loaded without it, maybe problem in some plugin, which you use with Duena theme (maybe it override core bundled jQuery), try deactivate you plugins one by one.About your 2nd issue – yes, it’s bug in CSS and it will be fixed with next version. Now you can fix it or with your way, or you can add next code to your style.css:
.taxonomy-description { padding: 20px; margin: 0 0 30px 0; background: #ffffff; box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22); position: relative; }Note, if you will be make any changes don’t forget use child themes for it. You can find great tutorial here http://codex.wordpress.org/Child_Themes.
Don’t quite understand your last problem – I open your site and all loads fine, maybe you can add screenshot of this problem?
Forum: Themes and Templates
In reply to: [Duena] SliderYour slider thumbnail size setted to 1170*550px, so images will be cropped to this size only if they are larger than this dimensions, if images smaller, they will be inserted in real size (532*425, 399*319 etc.), than this image will be stretched with CSS to 1170px by width and height in that case will be calculated automaticly, so it will be much larger than 550px
Forum: Themes and Templates
In reply to: [Duena] Creating completely blank pageForum: Themes and Templates
In reply to: [Duena] Creating completely blank pageHi
Don’t quite understand your question. Can you please be more specific?Forum: Themes and Templates
In reply to: [Duena] SliderI’m not sure, but seems like your uploaded images was to small and that’s why not resized to slider thumbnail size. For correct resize you need to upload image larger than slider thumbnail dimensions
Forum: Themes and Templates
In reply to: [Duena] Max posts on portfolio page templateHi,
Number of posts for Portfolio page template gets from Settings -> Reading -> Blog pages show at mostForum: Themes and Templates
In reply to: [Duena] SliderIf you change thumbnail size, already existing images will not be resized. You may use Regenerate Thumbnails plugin to crop image thumbnails with new size
Forum: Themes and Templates
In reply to: [Duena] SliderHi,
If you need lower slider height you can add to style.css next code#slider-wrapper .flexslider { height: 300px; (or any value you want, but lower than 450px) overflow: hidden; }If you need bigger height – only way is change slider-thumnail size in functions.php, it’s will be not good solution if you don’t have much experience with WP
Note, if you will be make any changes don’t forget use child themes for it. You can find great tutorial here http://codex.wordpress.org/Child_Themes.