Devora
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Contact form 7did you just post the wrong link?
Forum: Themes and Templates
In reply to: [Sugar and Spice] gallery alignment – help needed!I see you centered your gallery. I noticed, however, that you dont have a child theme installed. I recommend doing this asap, or it could cause a lot of grief down the line…
Forum: Themes and Templates
In reply to: [Ex Astris] Font-Familyplease post a link to your site.
Thanks
can you post a link to your site?
generally, you would add display:none; to the appropriate tag
Forum: Themes and Templates
In reply to: Contact form 7you would do that in a custom stylesheet. You would also need to use media queries there.
What did you want your form to look like?
Forum: Themes and Templates
In reply to: How customable are free themes?here is some info on child theme creation
https://codex.www.ads-software.com/Child_Themes
here is the link to the responsive theme
Forum: Themes and Templates
In reply to: [Sixteen] Menu mouseover colortry changing this code in your custom css
.main-navigation a:hover {
color: #7E5D26;
}and this
.main-navigation li:hover > a {
background: none repeat scroll 0 0 #100D0A;
color: #7E5D26;
}Forum: Themes and Templates
In reply to: [Virtue] Text size/color / layout on product pageThe first step to make these changes would be to create a child theme so you you do not lose your changes when you update the original theme.
After that, I would recommend creating a custom style sheet and making your changes there.
I’d be glad to give more more guidance here once your child theme is in place.
Also, the bottom link just takes you to a bing search.
Would you like to post the actual link?
Forum: Themes and Templates
In reply to: theme: dailytechyou can try checking in the footer.php file.
Would you like to post a link?Forum: Themes and Templates
In reply to: Theme (free) without right hand widget areahave you tried the responsive theme? It seems to be very flexible.
Forum: Themes and Templates
In reply to: Remove HeaderSo glad I could help!
Devora
Newjerseywebsolutions.comForum: Themes and Templates
In reply to: Remove Header#site-logo {
margin-top: 0px;
}
this should do it, just make sure you make all changes in a child theme, so you don’t lose your edits on updateForum: Themes and Templates
In reply to: Remove Headerthis too
.hgroup-right {
margin-top: 0px;
}Forum: Themes and Templates
In reply to: Remove HeaderTry adding this to your custom style sheet. It moves it up a lot.
.hgroup-wrap {
padding-top: 0px;
padding-bottom: 0px;
}Forum: Themes and Templates
In reply to: [Graphy] Change text size on dekstopFirst, add a child theme, then try adding the following to style.css
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
font-size: 100%;
}play around with the percentage above to get the text size you want.
if you want this to only adjust on a desktop, you will have to add @media query for the desktop size around the code above.