Nemanja Cakic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Tessaract theme – logo won't line up flush leftThe problem could be that the css that is used for banner loads after custom css so it overwrites it, you can try it like this:
header.menusize-fullwidth #site-banner { padding: 0; }Forum: Themes and Templates
In reply to: Tessaract theme – logo won't line up flush leftHello pamelazero,
You can move logo to the all way to the left by adding this:
.menusize-fullwidth #site-banner { padding: 0; }Make sure that you add it to your child theme style.css or with the plugin like “Simple Custom CSS”
Regards.
Hello sabresong,
If you are using “background-image” you can only add image url and not position properties. In your case you would need to use “background” property. Also you have written “norepeat” wrong it should be “no-repeat”. You can learn more here if you are interested:
http://devdocs.io/css/backgroundSo final code would be:
background: url("http://jkledis.theroguemouser.com/wp-content/uploads/dad_2b.jpg") no-repeat center center black !important;Regards.
Forum: Themes and Templates
In reply to: [Illustratr] Change font style from bold to regularHello sonjarella,
Here is code needed to make that changes with explanation what it changes.
Make sure that you add it to your child theme style.css or with the plugin like “Simple Custom CSS”/* updates navigation */ .main-navigation { font-weight: normal; text-transform: none; } /* updates titles on page front page (post listing) */ .site-main .portfolio-entry-title { font-weight: normal; text-transform: none; } /* updates titles on single post page */ .page-title, .entry-title { font-weight: normal; text-transform: none; }You can test it and use just what you need.
Regards.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] What are the smaller screen em values based on?Hello gwmbox,
em value is always based on parent element value. Here is one article that explains it:
http://www.sitepoint.com/power-em-units-css/
Regards.
Forum: Themes and Templates
In reply to: [Sydney] Social Media Icon PaddingHello pmbrenner91,
You can add it like this in your css plugin. You can change values how you like.
.social-menu-widget li { padding: 5px 7px !important; }Regards.
Forum: Themes and Templates
In reply to: Removing page "header"??Hello lashlovebymona,
You can hide title on your home page by adding this code to your child theme style.css or with the plugin like “Simple Custom CSS”:
.home .entry-header { display: none; }Regards.
Forum: Themes and Templates
In reply to: How to change the length of a lineSure, you can add it like this:
.footer-widgets .wrap { border-top: 10px solid gray; border-bottom: 10px solid gray; }And you can add this if you want to remove current border.
.footer-widgets { border: none; }Regards.
Forum: Themes and Templates
In reply to: How to change the length of a lineHello tred,
If I understood you well, you can add it like this, as a border to your footer wrap element (since it’s size is 1140px). You can modify color and size.
.site-footer > .wrap { border-bottom: 10px solid gray; border-top: 10px solid gray; }Regards.
Forum: Themes and Templates
In reply to: [Make] Change a:hover colors on social iconsHello SevenRoot,
Here is the code that you need. Make sure that you are using child theme or plugin like “Simple Custom CSS”:
.social-links a:hover .fa { color: red; /* default color */ } .social-links a:hover .fa.fa-facebook-official { color: red; /* for facebook icon */ } .social-links a:hover .fa.fa-envelope { color: red; /* for envelope icon */ }Regards.
Forum: Themes and Templates
In reply to: [Tracks] Date Above Title in ExcerptHello Adrie99,
In order to change color of date you can add this code to your child theme style.css or in plugin like “Simple Custom CSS”:
.excerpt-meta { color: blue; }Regards.
Forum: Themes and Templates
In reply to: [Pure & Simple] Navigation menu colourGreat 🙂
In order to change that you would need to add this:
.site-navigation.toggled-on a { background: blue; /* for all items */ } @media (max-width: 767px) { .nav-menu .current_page_item > a, .nav-menu .current_page_ancestor > a, .nav-menu .current-menu-item > a, .nav-menu .current-menu-ancestor > a { background-color: yellow; /* for active (current) item */ } } @media (max-width: 767px) { ul.nav-menu > li > a:hover, ul.nav-menu > li > a:focus, ul.nav-menu > li > a:active { background-color:red; /* hover for top level items */ } } @media (max-width: 767px) { ul.sub-menu > li > a:hover, ul.sub-menu > li > a:focus, ul.sub-menu > li > a:active { background-color: tomato; /* hover for sub level items */ } }Regards.
Forum: Themes and Templates
In reply to: [Enigma] Remove linear gradientHello cayindustries,
You can just delete whole declaration of “background-image” and set you color as “background-color”.
Regards.
Forum: Themes and Templates
In reply to: [Pure & Simple] Navigation menu colourHello there,
In order to change background color on hover on drop-down items you can add this code to your child theme style.css or in plugin like “Simple Custom CSS”:
@media screen and (min-width: 783px) { .primary-navigation li a:hover, .primary-navigation li:hover a { background: red; /* enter your color */ } }Regards
Forum: Themes and Templates
In reply to: (Goodtime Theme) Issues adjusting location of logoHi Elizarin,
Problem is that your header has fixed height of 60px so you can just set it to auto and your logo will be above navigation. You can do that by adding this code to your child theme style.css or in plugin like “Simple Custom CSS”:
#header { height: auto; }Your logo is currently positioned on the left if you want to move it to right just add:
.logo { float: right; }Regards.