oberoibunty
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Business Elite] Change header text colourHi hipmama
you mean menu item color or any other please conformthanks
Forum: Themes and Templates
In reply to: Removing white space below logoHi Ohpee
you can reduce the space between logo and banner image by using this code please find these classes in your style-sheet and replace this code in the place of your code ..main-content-area { margin-top: 0px; margin-bottom: 40px; } .vc_column-inner { padding-top: 0px; }
thanks
- This reply was modified 8 years, 5 months ago by Steven Stern (sterndata).
- This reply was modified 8 years, 5 months ago by Steven Stern (sterndata). Reason: put code in backticks
Forum: Themes and Templates
In reply to: Remove Category Headding/BlockHi jendaddario
i have solved your problem but i cant show you because i am not able to send any screenshot
[Moderator Note: Please do not request to contact someone outside of the forums.]
thanks
- This reply was modified 8 years, 5 months ago by Geoffrey Shilling.
- This reply was modified 8 years, 5 months ago by Geoffrey Shilling.
Hi vm2003
sorry to say what it just a screen shoot not a url of the website if can
give me a url of the website will customize with developer toolsthanks
Forum: Themes and Templates
In reply to: [Storefront] active colorHi carlos
Try this type of code it just a suggestion for change color of button and links on hover if you can give a website link i will give you good suggestion for this problem
Thanks
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<html> <head> <style> /* unvisited link */ a:link { color: #000; background-color:orange; border:1px solid #000; text-decoration:none; border-radius:3px; } /* mouse over link */ a:hover { color: #000; background-color:green; } </style> </head> <body> <p>Mouse over and click the link change the button color: <a href="https://www.w3schools.com">w3schools.com</a></p> </body> </html>
Forum: Themes and Templates
In reply to: [Activello] Menu Color ChangeHi misslucyloo
Can you provide a website link
Forum: Themes and Templates
In reply to: menu and submenu spaceTry this code maybe it will help
open the style.css and replace this css in place of your css like.
for example[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
#nav li:hover ul { left: auto; } <strong>#nav li:hover ul { left: auto; width: 180px; }</strong>
Forum: Themes and Templates
In reply to: Remove Category Headding/BlockHi jendaddario
Try this code for first issue maybe it will help
you can increase and decrease the height of div.[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
element.style { display: block; text-align: start; float: left; position: relative; top: auto; right: auto; bottom: auto; left: auto; z-index: auto; width: 1563px; <strong>height: 320px;</strong> margin: 0px; overflow: hidden; } .page-title { padding: 23px 0 0; height: 60px; background: rgba(0,0,0,0.6); display: none; } .post { display: block; background: #fff; border: 1px solid #ddd; position: relative; margin: 5% 0 0 0; } /*****************use code for second issue**************************/ .page-title { padding: 23px 0 0; height: 60px; background: rgba(0,0,0,0.6); display: none; } .post { display: block; background: #fff; border: 1px solid #ddd; position: relative; margin: 5% 0 0 0; }
Forum: Themes and Templates
In reply to: [Theme: Make] How to remove extra space in footerHi ppippi
Try this code maybe it will help
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
.site-footer { float: left; width: 100%; padding: 0; padding: 0; color: #464849; background-color: #eaecee; } .footer-widget-container { float: left; width: 100%; height: 220px; }
Hi,
Can you provide me a link of websiteForum: Themes and Templates
In reply to: Changing header to transparentI didn’t understand exactly are you using header background image or color ?
The code that i have send yesterday that just works on color not on image
please clarify the questionForum: Themes and Templates
In reply to: CSS doesn't work on mobileHi imrobertvl can you give me url of this website
What theme are you usingForum: Fixing WordPress
In reply to: Reduce header height in Pixel-Linear themeYou need to create child theme first then add this code in style.css then you will not loose any changes that you will make in this theme.
Forum: Fixing WordPress
In reply to: Reduce header height in Pixel-Linear themeGo to your theme directory and open wp-content/themes/pts-pixel-linear-master/style.css
open style.css and look for ” .navbar-inverse ” and change it to below code
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
.navbar-inverse { padding-bottom: 0px; padding-top: 0px; border: none; }
this css will remove the white space from you header.
Forum: Themes and Templates
In reply to: Changing header to transparentHi dreamin.
Try this css to make a header transparent i hope it will help you.[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
#header, #header-background { background: rgba(247, 147, 34, 0.7); }
The last value is for the opacity.you may set last value from 0.1 to 0.9 to increase or decrease opacity,for example:-
#header, #header-background { background: rgba(247, 147, 34, 0.1); }
OR
#header, #header-background { background: rgba(247, 147, 34, 0.2); }
OR
#header, #header-background { background: rgba(247, 147, 34, 0.6); }