Nemanja Cakic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [i-max] HELP! Problem on mobile view, not full width layoutHi,
You can fix that by adding this code to your child theme style.css or in plugin like “Simple Custom CSS”:
body.custom-background { overflow-x: hidden; }Also my suggestion is to also add this code to keep your menu-toggle link on smaller devices always above the content:
.menu-toggle { z-index: 100; }Regards.
Forum: Themes and Templates
In reply to: [Hueman] Center titleHi Cajuna,
You can use this code to center titles on your pages:
.page-title { text-align: center; }Make sure that you add it in your child theme style.css file
https://codex.wordpress.org/Child_Themesor use plugin like
https://wordpress.org/plugins/simple-custom-css/Regards.
Forum: Themes and Templates
In reply to: [ColorWay] Can't Change Link Hover ColorYou are welcome, glad that it works π
Forum: Themes and Templates
In reply to: [ColorWay] Can't Change Link Hover ColorHello,
The problem is that css file that sets default hover color (green.css) is loaded after your css file and it overwrites your code. Solutions would be to add “body” (if you want all links changed) before it like this so your declaration is “stronger” that one you are overwriting.
body a:hover { color:#000000; }Regards.
Forum: Themes and Templates
In reply to: Overriding native @media requestsOk awesome, I’m glad that it works π
Forum: Themes and Templates
In reply to: Overriding native @media requestsHello,
Can you post link to your website so I can check it out.
You should try to set
@media screen and (min-width: 783px)
same as the code that you are overriding since how is now your code will load first and than when screen size gets to 783px old code will override it because of media query.Regards.
Forum: Themes and Templates
In reply to: [Frontier] Resizing background image when viewed in phoneHello,
If you want to change height of your header background you can place this code in your child theme style.css file or use plugin like
https://wordpress.org/plugins/simple-custom-css/@media only screen and (max-width: 500px) { body #header { background-size: 1280px 100px; min-height: 100px; } }Just change numbers how you want.
Regards,
NemanjaForum: Themes and Templates
In reply to: change scrollbar colorYou’re welcome, I am glad that I could help π
Forum: Themes and Templates
In reply to: change scrollbar colorHi,
You can change scroll bar color like this:
::-webkit-scrollbar-thumb { background-color: red; /* use your color */ }You can also change other properties of scroll bar, like for example:
::-webkit-scrollbar { width: 20px; } ::-webkit-scrollbar-track { background-color: gray; } ::-webkit-scrollbar-thumb:hover { background-color: blue; }But you should know that styling scroll bar in this way is not supported in all browsers ( for me it doesn’t work on Mozilla and IE ) so it’s best to consider it just as a enhancement for your site.
Forum: Themes and Templates
In reply to: [Virtue] Mobile Menu flashes open, then disappearsHi,
I am not really sure why this problem happens to you but I found out that you can solve it by setting your menu height on collapse in like this:
.collapse.in { height: auto; }Also you may want to add all of your changes to child theme so you don’t loose them when you update your theme.
https://codex.wordpress.org/Child_ThemesForum: Themes and Templates
In reply to: [Enigma] Theme not Responsive on iPad/iPhoneHello,
You can use this to fix menu
.navbar-nav { height: auto; }so it stays full height on mobile
and this
@media only screen and (min-width: 200px) and (max-width: 480px) { .carousel-text .enigma_blog_read_btn { display: block; } } @media only screen and (min-width: 767px) and (max-width: 992px) { .carousel-text .enigma_blog_read_btn { display: inline-block; } } @media only screen and (max-width: 767px) and (min-width: 480px) { .carousel-text .enigma_blog_read_btn { display: inline-block; } }to show you button always
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Remove "Home" title from front pageHi @EarthlingGirl
It’s like @dfranzwa wrote. You just need to be little more specific with your css so you hide just what you want, use:
.home .type-page .entry-title { display: none; }