MagnusCron
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Blog appearing on all my pagesForum: Themes and Templates
In reply to: Blog appearing on all my pagesOk then that didnt work. Take another look in pages and go to the page you want to change and then go down to Themify Custom Panel –>
Page options there you should have an option called sidebar options check so it will display a single page.Hope this makes sense
Forum: Themes and Templates
In reply to: Blog appearing on all my pagesOk I see! A quickfix is to put code in your css but the best is to localize the real problem.
If you put this in your css it will disappear for now:
`#sidebar {
display: none;
}Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundThanks glad that it works
Forum: Themes and Templates
In reply to: Blog appearing on all my pagesOk i saw that it doesnt look the way I thought, I can make changes to the page layout under themify settings —> default layouts and scroll down to the bottom. Have you tried there?
Forum: Themes and Templates
In reply to: Blog appearing on all my pagesHi! Have you tried to goto pages and then edit for instance the about page , at the right you have page attributes and there you can try to change the page template under template.
If this works to the same for all the other pages.Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHi there!
Now when I remove the background from this then everything works. So remove the backgrounds from this section so you just have the max-width left.body.layout-boxed #body-core, body.custom-background #body-core { max-width:100%; }
Do that and I will check again:
Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHave you tried this to edit the css https://www.ads-software.com/plugins/simple-custom-css/
You can test background-image:url(htttp…); without quots.Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHi!
There is something about the quotes that doesnt work properly for the url.
Do you add the css via Appearance > Editor > style.cssForum: Themes and Templates
In reply to: [Gray Whale] Header Text ArtifactHi!
You can just add this to your css
.site-branding{ display: none; }
Hope this helps.
Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHi again! I took a look at your site and the reason my css doesnt work is because that the image url isnt correct. I also missed the % sign after max-width.
First in the :body.custom-background #body-core { max-width:100%; background-image: url("https://beziershypnose.esy.es/admin/wp-content/uploads/2016/02/fondeau.png"); }
and in the site-header you must correct this:
#site-header { background-image: url("https://beziershypnose.esy.es/admin/wp-content/uploads/2016/02/fondeau.png"); }
try this and I will check again, it is important that the url is correct otherwise it looked good.
/MagnusForum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHi ,
I tried the code in Google and there It works perfectly ,maybe the css get overwritten ,are the applied css come last ,?Forum: Themes and Templates
In reply to: [Renden Theme] Slider & BackgroundHi williamsii
Try to add this to your css, maybe you have to fix some margin and padding on the slider after this but its a start: body.layout-boxed #body-core,body.custom-background #body-core {
max-width:100;
background-image: url(‘https://beziershypnose.esy.es/admin/wp-content/uploads/ 2016/02/fondeau.png’);
background-repeat: repeat;
background-position: top center;
background-attachment: fixed;
}
body.layout-boxed #pre-header,
body.layout-boxed #header,
body.custom-background #pre-header,
body.custom-background #header {
max-width: 100%;
}#site-header {
background-image: url(‘https://beziershypnose.esy.es/admin/wp-content/uploads/2016/02/fondeau.png’);
background-repeat: repeat;
background-position: top center;
background-attachment: fixed;
}
#header {
background:none;Forum: Themes and Templates
In reply to: [Codium Now] Fixed header jumping / broken?Hi Jack!
I now remember that the margin-top is made by wordpress itself for the admin-bar when you are logged in by default.
You can try to put this code in the functions.php file :add_action(‘get_header’, ‘my_filter_head’);
function my_filter_head() {
remove_action(‘wp_head’, ‘_admin_bar_bump_cb’);
}If you dont have a child theme installed and put the code in the parents theme it will be removed when you update your theme so the best thing is to install a child theme and put the code in the child’s function.php. Otherwise you must remember to put the code back if you update the Codium Now theme.
Hope this make sense
Forum: Themes and Templates
In reply to: [Codium Now] Fixed header jumping / broken?Hi Jack!
I can see that you have a margin-top in the html that is set to important and 46px on small screens.
The same goes for all screens there the html is set to a margin-top of 32px. See below
@media screen and (max-width: 782px)
html {
margin-top: 46px !important;
}
html {
margin-top: 32px !important;
}Go to your style.css and change the above to margin-top:0;
and you should be fine.Cheers Magnus