redstar90
Forum Replies Created
-
Forum: Plugins
In reply to: [CF7 Skins for Contact Form 7] Submit buttonHi,
You should try to use this plugin:
https://www.ads-software.com/plugins/simple-custom-css/ for your Custom CSS code.Regards
Forum: Themes and Templates
In reply to: [Shapely] Shorten FooterHi,
Could you please send me a link to your site so I can take a closer look?
Best RegardsForum: Themes and Templates
In reply to: [Customizr] Nav-menuHi,
Could you send me a link to your site so I can take a closer look and send you custom css code to fix your issues?
Best RegardsForum: Themes and Templates
In reply to: [Hueman] How to bold top menu fontHi,
could you please post link to your site so we can check and inspect it?
Best Regards
Forum: Themes and Templates
In reply to: need help taking over avada run websiteHi,
You should carefully read their documentation which could be very helpful for you to learn basic things about wordpress and how to use Avada theme.
This link will help you:
https://theme-fusion.com/support/documentation/avada-documentation/Best Regards
Forum: Themes and Templates
In reply to: [Experon] menu disappears in mobile width?Hi,
this happend because of these code: https://screencast.com/t/tQeHEASYY
which is in style-responsive.css file.
If you want to override this code, you should paste this code:
@media only screen and (max-width: 768px){
#header-links {
display: inline-block !important;
}
}Best Regards
Forum: Plugins
In reply to: Images and grouped productsHi,
Unfortunately, you need to change woo-commerce template if you want to have these functionalities, because this is from woo-commerce plugin. This requires additional custom coding and changing their templates. Thanks for understanding.
Best Regards
Forum: Themes and Templates
In reply to: CSS HelpHi,
1) if you want to change this title color: https://screencast.com/t/0Jkxe77gVf
use this code:h1.entry-title.post-title a {
color: #211851;
}2) if you want to change these colors: https://screencast.com/t/PCvbLyA6ad
use this code:
h4.tribe-event-title a {
color: #211851;
}p.tribe-events-widget-link a {
color: red;
}Best Regards
Forum: Themes and Templates
In reply to: [Max Magazine] Editing Title of A PostHi,
if you want to change this font-size title for featured posts: https://screencast.com/t/815iv7FmCFn
use this code:
#featured-categories .feat-post h3 {
font-size: 20px;
}If you want to change this font-size title: https://screencast.com/t/y32dKkCO
use this code:
#featured-categories .more-posts .post .right h5 a {
font-size: 20px;
}Best Regards
Forum: Plugins
In reply to: i want to narrow down the spaces between the different articlesHi,
If you think on this space: https://screencast.com/t/HhoqgoVyZe
use this code and reduce margin-bottom:
.hentry {
margin: 0 auto 48px !important;
}(margin-bottom is 48px now, just set the value that fit your needs)
Best Regards
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Minimize size (height) of headerHi,
if you want to re-size your header height, you should use this custom css code:
.site-header {
height: 80px !important;
}Now, your header is 100px.
Best Regards
Forum: Themes and Templates
In reply to: [Hueman] CSS a hover not workingHi,
if you want to change color of your links below that picture, you should use this custom css code:body a {
color: red;
}on hover
body a:hover {
color: green;
}and set color you want.