rgchang
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Emphasize] menu different background color than logoCan you send a link to your website?
Forum: Fixing WordPress
In reply to: Top navigation menu not long enoughhey Nathalie,
Hope you’re doing well. I inspected your website and found a solution.
Your menu has a fixed width. The fixed width is causing your last link to drop below the other links. In your style.css, delete this line of code below.
.site-header .widget-area {
width: 480px; <———delete this line of code
padding: 24px 50px 0 0;
float: right;
text-align: right;
}Let me know if this works
Forum: Themes and Templates
In reply to: [Ribosome] Remove the MENU in my posthey scastillo2016,
In your style.css file, type in ” display:none; ” right under the original code
.sub-title-widget-area {
margin: 14px 0;
margin: 1rem 0;
display: none; <——— Type this code in
}Forum: Themes and Templates
In reply to: CSS for font color and hover color on menu sub-itemsCorrect me if i am wrong. On hover, you want your font to be black and your background to be light blue or do you want your font to be black and on hover you want your font to be light blue?
Forum: Themes and Templates
In reply to: CSS for font color and hover color on menu sub-itemsI don’t know what file the code could be in. You are absolutely correct on changing the background color.
backgrounnd-color: #5ACDF0;
you’re welcome ??
target the navigation link
type in this code
.menu li {
display: inline-block;
}
lmk
hey danigehm,
I inspected your website, there are 2 changes you have to make in your style.css file.
first change
#menu-item-22 a {
padding-left: 60px; <—–delete this line of code
}
second change
.menu a {
padding-left: 80px; <—- delete this line of code
padding-right: 80px; <—- delete this line of code}
hope this helps, goodluck
Forum: Themes and Templates
In reply to: CSS for font color and hover color on menu sub-itemshey csigabiga83
I looked over your website, remove the background-color: #f2e974 and add the color: #000000;
add this line of code
nav.main-menu ul > li ul li:hover a {
background-color: #f2e974; <—— remove this code
color: #000000; <——add this code
}let me know if this helps
Forum: Themes and Templates
In reply to: Howto create a child theme without ruining my whole website?Here’s a awesome link. This will show you an example of how to create a child theme
Forum: Themes and Templates
In reply to: [Pure & Simple] Header Cut OffDo you have a link to your website?
Forum: Themes and Templates
In reply to: css – remove padding from imagehey Kristad,
try this code in your style.css
.content p {
margin-bottom: 0px;
}Forum: Themes and Templates
In reply to: [Hueman] Header plroblem after new updatethat’s weird, it says #33363b on my computer lol
did it work?
Forum: Themes and Templates
In reply to: [Hueman] Header plroblem after new updateare you sure you deleted the background: #33363b; in your #header?
#header {
background: #33363b; <——delete this line of code
}I inspected your site. I deleted background: #33363b; in your #header and your image showed up
Forum: Themes and Templates
In reply to: [Hueman] Header plroblem after new updatedo you have a link to your website?