codeManiac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Some get_theme_mod() calls return bool(false)Hey revansreturn !
Its normal that it returns bool(false). If you check get_theme_mod() in the codex, the 2nd parameter which is the variable $default is set to be false by default unless you give it a value 🙂
I hope this helped !
Cheers !
Forum: Themes and Templates
In reply to: Remove thick black horizontal dividers Twenty SixteenHey JenCooks !
You can remove the dividers using the following code , go to dashboard-> appearence -> editor -> open style.css file
.widget { border-top: none; }I hope this helps 🙂 If you need anything else let me know
Cheers
Forum: Themes and Templates
In reply to: How to make sub menu, drop down menu transparent ?That’s weird. Make sure you didn’t miss anything because your problem is a simple CSS problem and I showed you that the solution provided works perfectly with a screenshot
Forum: Themes and Templates
In reply to: Sela Border and alignementOh hey wait am not one of the theme authors in case that’s what you thought 🙂
back to your problem. Yes the theme was designed that way. So anything you write in the editor have a space where you can play with the order or organization etc but everything inside that box which the theme uses by default
Forum: Themes and Templates
In reply to: Sela Border and alignementHey hedgersabroad !
I hope you are doing well today 🙂
It seems you are asking about many things so I will ennumerate the solutions which are as follow
1- Stop the body from cutting into the featured image :
.post-thumbnail + .entry-header { margin-top: 0; }2- Make the website Full Width:
.site { margin: 0; max-width: 100%; padding: 0; }3- When you go for full width choice , the featured images will look so close to the left edge of the website, so add this to give it some space
.post-thumbnail { margin-left:0; }Here is the result http://imgur.com/opFTIoz
I hope this helps and let me know how it goes 🙂
Cheers !
Forum: Themes and Templates
In reply to: How to make sub menu, drop down menu transparent ?Even if it helps you only , it’s a pleasure to help someone succeed with sthg. Go to Dashboard -> Appearence -> Editor -> Open style.css file and paste the code in the end of the file
Have a good day and let me know if u need anything else ! 🙂
Forum: Themes and Templates
In reply to: How to make sub menu, drop down menu transparent ?hmm then simply add !important as follow
.sub-menu { background:transparent !important; }the result is here http://imgur.com/uZ9ShUX
ofc you can replace transparent with rgba(0,0,0,.7) and play with these values to suit your needs 🙂
Let me know how it goes
Forum: Themes and Templates
In reply to: can't find CSS not on main style sheetWhy trying there while you can do it on div.producttext ?
try
.div.producttext { margin-left:0; }Let me know how it goes
Forum: Themes and Templates
In reply to: How to make sub menu, drop down menu transparent ?Hey kksilvery !
The solution is easy. For submenus, WordPress generates a class named “sub-menu” so to make the drop down transparent simply add the following to your style.css :
.sub-menu { background:transparent; }Cheers !
Forum: Themes and Templates
In reply to: can't find CSS not on main style sheetHey shanfriz !
The css is in a file called default.css under “default” directory. You can see that in this URL Path to default.css file
I’d suggest you don’t touch that file and do your changes in the style.css.
Just for info style.css isn’t the only place where the theme CSS code must be located 🙂 but the style.css file must exist.
So to resume , put your code in the end of style.css and the problem will be solvedCheers !
Forum: Themes and Templates
In reply to: Image won't resize on Mobilecan you try this and tell me how it goes for you ?
@media (max-width:767px) { .wp-caption { text-align:left; } }Forum: Themes and Templates
In reply to: Need Help Customizing themesure here you go
#header .header-links > ul > li a:hover, #header-sticky .header-links > ul > li a:hover { background: #39B54A; }How is it now?
Forum: Themes and Templates
In reply to: Need Help Customizing themeHey Luke !
Happy new year !
ok let’s solve the problems 1 by 1 :
– For the buttons color please add the following to your style.css file by going to dashboard -> appearence -> editor -> style.css
.themebutton, button, html input[type="button"], input[type="reset"], input[type="submit"] { background: #39B54A; }– For the full stop problem
.iconmain h3+p { display: none; }– text at the top problem
.custom-header { display:none; }Let me know how it goes 🙂
CHeers !
Forum: Themes and Templates
In reply to: Site title isn't going across my header?Sure here it is
.hentry .entry-header h1 { border-bottom: 1px solid #FF0000; color: #FF0000; }Now they will be of same color 🙂
Forum: Themes and Templates
In reply to: Image won't resize on MobileI checked on mobile but not sure if the following is what you want. You don’t like the height of sinle images when seen on mobile ? or you want space between the images of the gallery ?