I'm trying to implement tinyMCE into my site and I'm using the advanced theme, I've removed some options and set up the top toolbar how I want it to look but when I try to remove toolbar2 and toolbar3 they show up with default buttons. Does anyone know how to remove them completely? I've tried giving them "" and none and "none" etc - I've also searched for the answer and can't seem to find it. Thanks for any help.
Use this:
theme_advanced_buttons3 : "",
Related
Im editing this jekyll theme with github pages and im trying to add buymeacoffee generated button in menu bar.
It works but for some reason it gets the theme colors, i tried to debug it hours now but it didn't work.
The button should look like this:
https://i.imgur.com/RSYrOx6.png
But now:
https://i.imgur.com/KzwqCml.png
I added it in _includes/navbar.html in the end of the file. I tried to placed it in other files too, outside divs inside divs with custom css classes nothing worked.
Looks like it gets a "general" color, i tried to find this setting but i couldn't, can any of you help me to figure it out? thank you!
you can selector level of custom css in _dark.scss.
Example, you can change with this.
body[data-theme="dark"] .bmc-btn-container > a.bmc-btn:hover {
color: black;
}
I am trying to remove the previous and next buttons in mkdocs but I don't want it to be hacky.
I have read the docs and searched the web and haven't found anything other than some GitHub issues.
Remove these buttons!
Thanks!
I would do this using CSS to hide it by adding into the included css. In the material theme it will be:
md-footer__inner { display: none }
This should be within the css which is included as extra_css in the mkdocs.yml.
I am trying to give margin property in style={{backgroundColor:"#41bedd"}} but my page does not run? can anybody tell me how to use? I tried like this:
style={{backgroundColor:"#41bedd";margin:"10px"}}
It is not running though. Why?
There is some syntax problem in your code. So try this for multiple attributes.
style={{"backgroundColor" : "#41bedd", "margin" : "10px"}}
My english is not to much good, and i dont know to describe this problem good.
I have some blog on Blogger and I was install some free theme. I dont want to my name (author info) is on whole blog, but there is no button to check it off, I must do it trough HTML editor.
I found and delete it from most of places on blog, but I cant delete it from some header "slideshow"
I try to find it via "inspect elements" option, to find some familiar word there and search it in html. I know to I cant build web site if I dont know main steps, but I always stuck on some stupid things.
<span class="recent-author">Alexandar Sh</span></div>
This part make me trouble, maybe I looks stupid, but I am :D . I am total amateur with this and I dont know what to do to I dont get this anymore.
screenshot
One more Screenshot
This "recent" probably activate this option to work to show slideshow (not moving images <[One more screenshot][3]>) so when I type that "display: none" option, I block all "widget"
Thanks for help!
I got idea (didnt know to that is possible) and add tag to widget part of code. (before I add this, what you add me, after first Style tag. I didnt see before to there is more style tags. So you help me both. I use tag becouse Rico tell me that, and put code what Derek gave me.
Thank you.
You should have access to a .css CSS file. That is the 'Styles' for your site. (.html is the markup/content`) etc. ~ If you can find a place that has CSS rules... you could add:
.recent-author {
display: none;
}
For reasons I'm not going to try and explain here... you may also need to add this:
.recent-author {
display: none !important;
}
Try adding this line in any of your Css files:
span.recent-author {
display: none;
}
If you don't have any Css file / don't have access to any just add an inline style tag in your html file:
<style>
code from above
</style>
This should remove your author span tag.
My Joomla site http://financial-freedom.com.au/ showing an annoying footer as
<a href='http://okjoomla.com' target='_blank'>Welcome to Get more sources</a>
I tried using dreamweaver's find tool but it didn't work. I also tried using search function in database which too didn't work.
Did anyone ever had this issue? I tried all the day Googling for this and found nothing. Any help is highly appreciated.
Edit: I manually check the footer module. And, found nothing there. As there are too many modules I can't check each module cause I believe search using Dreamweaver find too& search in PhpMyAdmin should search all modules content.
Thanks
As you commented, you do not have to search module in Dreamweaver or PHP MyAdmin, you will need administrator access like ... Or you will have to search in index.php as I told you, also I just opened that site, seems like you are downloading premium templates for free, so they do add backlinks, which are hard to figure out without source codes... So that's all I can help... Read ahead..
It may be a module, or the text must be literal string in your index.php page, if it's a module than disable it, else, go to the path below...
root/templates/system/index.php
In the above file, the text must be somewhere in the bottom, so just remove it
If you are not able to do that, than cheapest solution using CSS is display: none;, so as your a tag is adjacent to div having an id footerwrap so you can use
#footerwrap + a[href="http://okjoomla.com"] {
display: none;
}
OR
a[href="http://okjoomla.com"] {
display: none; /* This will remove all the anchor having that link */
}
Or you can use jQuery to remove it from the DOM completely
$('#footerwrap + a').remove();
Demo
Or to be more specific, and independent of the #footerwrap
$('a[href="http://okjoomla.com"]').remove();
/* This will remove all the anchor having that link so if you are
sure that it will be always adjacent than use #footerwrap + as well */
Demo