tomaja
Forum Replies Created
-
Ah, thanks rdellconsuliting, I missed that one
Just remove widgets from footer and that means go to yoursite.com/wp-admin/widgets.php and remove widgets from Footer Area 1, 2 and 3.
Forum: Themes and Templates
In reply to: [Customizr] Add a default form on PostsYou need to create a page with mentioned form. You can use default wp form The “button” part is easy, you can use TB button generator, choose what you like and copy/paste the button code at the bottom of your ‘Career Postings’ post e.g.
<a href="#" class="btn btn-success">APPLY NOW</a>and change # with form page linkForum: Themes and Templates
In reply to: [Customizr] How to Edit SliderTake a look at http://www.themesandco.com/customizr/#sliders , and video tutorial for sliders
Forum: Themes and Templates
In reply to: [Duena] Some problemes with DuenaIt would be good for you to create Deuna child theme and then you can put all css code in the childs theme style.css
Other option is to paste this css code into the css editor at http://lebarbecuederafa.com/wp-admin/themes.php?page=editcss
Do not change Duena default style.css because you will lose all changes after theme update.Forum: Themes and Templates
In reply to: [Customizr] Hover option for menuIt is easy, you can copy/paste pure youtube link, and it should work out of the box (if you use WP 3.5+) You can always try
[embed width="640" height="360"]http://www.youtube.com/watch?v=e5_Q-LvQu1Y[/embed]as explained at Codex but for some reason only that worked well for me (with right size) was previous solution.You could use shorcode where you can set width and hight of the video by yourself, like [youtube=http://www.youtube.com/watch?v=e5_Q-LvQu1Y&w=640&h=360]
You need to enter this using text mode of your editor.Forum: Themes and Templates
In reply to: [Customizr] Change scrollbar colorIt really depends on browsers.
With pure css, for simple changes like witdh and colors, you could try with::-webkit-scrollbar { width: 14px; background-color: silver; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; background-color: silver; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); background-color: #0099cc; }but it wont work in all browsers, like Firefox. For that you will have to use JS, jquery based scrollbars like jscrollpane YIu could also check http://codemug.com/html/custom-scrollbars-using-css/ for more CSS solutions.
Forum: Themes and Templates
In reply to: [Customizr] Change linkNothing to do with Customizr theme. You can change the look of your permalinks in eg: http://localhost/wordpress/wp-admin/options-permalink.php
Forum: Themes and Templates
In reply to: [Customizr] dropdown menu on mouse over?Take a look here
Forum: Themes and Templates
In reply to: [Duena] Some problemes with DuenaTo fix your background image put
body.custom-background { background-repeat: no-repeat;into child css file or custom css field.
From my browser (Google Chrome) your titles are fully visible, but anyway you can move your site title with#header .logo .text-logo a { padding: 0 15px 0 10px;you can change your left margin (10px) even more if you need to.
Same goes for site description:#header .logo .site-description { margin-left: 20px;Forum: Themes and Templates
In reply to: [Duena] Widget size/ blog postsI agree, its just much easier with the plugin, as I said before. It would be nice to see option to change each sidebar size integrated in Duena theme.
Forum: Themes and Templates
In reply to: [Duena] Widget size/ blog postsWith this plugin he will not change child theme or main theme.
Forum: Themes and Templates
In reply to: [Duena] Widget size/ blog postsThis theme is responsive one, so its not that easy to change width by hand, because od the different screen and span sizes. This is much easier apporoach. This should work for most Bootstrap responsive themes (with some tag changes)
Install and activate RTFR.
Add these replacements to it (the model is:
|string to be replaced| => |replacement string| – do not add the vertical lines in the boxes, I just used them as delimiters for the strings;
string to be replaced goes in the left box,
replacement string goes in the right box,
and each line is a separate replacement):|widget-area span4| => |widget-area span3| |<div id="primary" class="span7 right">| => |<div id="primary" class="span8 right">|