MRM-Racing
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Adding scroll down arrow on sliderYour site looks nice, I may consider just adding a small images since my client insists on this.
Hmm have to solve how to do the css depending of viewer height and scrollbar setting.
I managed to add picture, so I only have to figure the css.
Will mark as solved.
Forum: Themes and Templates
In reply to: [Customizr] Image instead of text in Slider Title/TextAhh forgot the solved…
Forum: Themes and Templates
In reply to: [Customizr] Image instead of text in Slider Title/TextThx, it works just out-the -box.
Marked as solved ??
Used this in function;
add_filter('tc_slider_display', 'do_my_shortcode'); function do_my_shortcode($html){ return do_shortcode(html_entity_decode($html)); } add_shortcode('htmlify', 'do_html'); function do_html($attr, $content){ return str_replace(array('{','}'), array('<','>'), $content); }
And this in slider description;
[htmlify]{/p}{img class="my__img_class"}{img src="https://www.xxxxxx/wp/wp-content/uploads/xxxx.png"}{p}[/htmlify]
Will only add some css to switch to a small picture on small resolutions.
many thank′s
Robert
Forum: Themes and Templates
In reply to: [Customizr] Image instead of text in Slider Title/TextWe are waiting for the slides pictures since they are 1800 px * 1300 px.
Are expecting 4-6 main slide pictures.
It is a huge slide on frontage, it can me the same picture (her handwriting) on all slides but I would prefer to have a different picture (color) if the main slide is dark or light.
Forum: Themes and Templates
In reply to: [Customizr] Image instead of text in Slider Title/TextThx, the page is not open until late this week.
But instead of writing a text on the slider (Title + text) I want a small picture instead in that shaded area.
All I can say right now.
I can try to get a picture to show what I am trying to do.
/Robert
Forum: Themes and Templates
In reply to: [Customizr] Custom ExcerptHave you set the drop down to “Display full content” in Page & Post layout > Cusmtoiz’it settings?
Edit: I missread your post, so this was not the solution ??
Forum: Themes and Templates
In reply to: [Customizr] Removing "Pencil/Page" icon from posts and pagesThere are snippets for most things on customizr;
https://www.themesandco.com/snippet/change-postpage-icon-title/#tc-comment-title
Use firebug to find the element you want to format/remove
So you can use css in child theme like this;
.format-icon{display: none;}
Forum: Themes and Templates
In reply to: [Customizr] Change width of right sidebarI use css like this to format the sidebar, this is on page only, I have separate on home and single.
.page .tc-sidebar {background-color: rgba(0, 0, 0, 0.8);
margin-left: 100px;
padding: 0px 10px 10px 10px;}You can make other settings in function.php (make sure you use child-theme!!) Here you can adjust the span, if not familair with it read here https://www.themesandco.com/snippet/customizr-layout-examples/
You can use filter like this;
add_filter(‘tc_global_layout’, ‘my_custom_layout’ );
function my_custom_layout( $layout ) {
$my_layout = array(
‘r’ => array (‘content’ => ‘span7’ , ‘sidebar’ => ‘span3’),//sidebar on the right
‘l’ => array (‘content’ => ‘span9’ , ‘sidebar’ => ‘span3’),//sidebar on the left
‘b’ => array (‘content’ => ‘span6’ , ‘sidebar’ => ‘span3’),//both : two sidebars
‘f’ => array (‘content’ => ‘span12’ , ‘sidebar’ => false),//full width : no sidebars
);What do you mean with default setting? Shows on all pages or not at all?
You may have to disable it on the other sites.You can use firebug to inspect if you got some other css with higher priority affecting.
.home footer#footer{border-top: 4px solid #aaa;}
Forum: Themes and Templates
In reply to: [Customizr] external link in sliderhttps://www.themesandco.com/snippet/setting-a-custom-external-url-to-a-slide/
There are many code snippets here ??
Forum: Themes and Templates
In reply to: [Customizr] Adding icon (pictures) in colophonThank’s, can’t live without firebug. Better than the tools included in firefox.
I have most settings ready, and are impressed of how sophisticated but clean the website has become.
The things that are hardest to grip is making hooks and adding filters.
Forum: Themes and Templates
In reply to: [Customizr] Nav submenu disappears before clickForum: Themes and Templates
In reply to: [Customizr] Proper customizationMany thank’s, works like it should!! Grate community ??
Forum: Themes and Templates
In reply to: [Customizr] Proper customizationFor social block you just need to uncheck the proper option in customizr settings.
Yes they do not show up but still take place, this shows up in firebug; <div class=”social-block span5″></div>
So I actually have to remove it.
And ‘wpautop’ was from google ?? Did not know what it was.