TouchCoding.net - ?yvind S?ther
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Responsive] 404 / Search PagesHi there Prunelia! ??
Can I please have a link to your site, so I can have a look at what you mean?Forum: Themes and Templates
In reply to: [First] Multiple search boxes appearing on themeHi there Finnegans Pack!
From what I can gather these search bars is in the widgets areas. You can remove these in your admin dashboard under “Appearance>Widgets”. Have you tried this?Forum: Themes and Templates
In reply to: [Bizlight] pagination is vertical – how do i make it horizontal?Hi there Bluestandish!
Do you mean more columns? Right now I can see you have 3 columns, but if I understand you correctly you want more than that right?Copy this code into you functions.php in your child theme and change the “3” to the number of columns you want:
global $woocommerce_loop; $woocommerce_loop['columns'] = 3;
Let me know if I misunderstood your question.
Forum: Themes and Templates
In reply to: [theme: sela] it doenst look the sameHi there Anter123!
Can you be more specific? What doesn’t look right? The overall style looks good to meForum: Themes and Templates
In reply to: how to resize widgets?I installed the theme on a test site and looked for a width property and found this:
#primary, #secondary { float: right; overflow: hidden; width: 220px; } #footer-widget-area .widget-area { float: left; margin-right: 20px; width: 220px; }
What widget are you trying to customize? If it is the sidebar(primary and/or secondary), you need to apply the css to “#primary, #secondary” and if it is the footer widget, you need to use “#footer-widget-area .widget-area”.
I hope this solved it for you ??
Forum: Themes and Templates
In reply to: 2 different widths in one postHi there heavenlyimage!
You can easily do this be selecting elements after the image, like this:.entry-content :first-child ~ p, entry-content :first-child ~ blockquote { }
This selector will not select the image. Use that selector to apply the padding and margin you want ??
I hope that helped you out ??
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Site Info & TitelOh yeah. You can remove it using css or delete the line in the footer.php I believe.
If you’re not that experienced with wordpress, I would suggest just install a custom css plugin and use this code:
.site-info { display: none; }
Forum: Themes and Templates
In reply to: how to resize widgets?okey, I can’t use that site when it’s in maintenance mode.
But try this:
.widget { width: 100%; height: 100%; }
Change 100% to what you want. play around with it until it is right for you.
If this doesn’t work, can you tell me what theme you are using?
Forum: Themes and Templates
In reply to: how to resize widgets?Hi there Xstangerx!
If I could have a link to your site and I could inspect it some more.You could use the width property on the widget class.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Site Info & TitelHi there peaches Media!
Site info and title in the footer? Can I have a link to your site?Do you mean the header? You can change this in the customizer. Under site identity you can uncheck the “display header text”.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Change title font?Yeah. change the “Montserrat, “Helvetica Neue”, sans-serif” to what font to want and “black” to the color you want. The code I gave you are the code from your site and you need to change them.
Forum: Themes and Templates
In reply to: [Senses Lite] Hide primary menuHi there Pete123!
You can easily hide the nav with custom css, either in a custom css plugin or a child theme.Here is the code:
nav#site-navigation { display: none; }
Forum: Themes and Templates
In reply to: White space between menu bar and contentI don’t see the problem. Can you please give me more details? What did you do to make it that way? Custom css?
Forum: Themes and Templates
In reply to: White space between menu bar and contentHi there Jasynrandall!
It seems to me that the page-title-wrap is empty. You can use css to hide it if you’re not using it.Here is the css:
.page-title-wrap { display: none; }
I hope that helped.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Change title font?Hi there, Pinkzzz!
You can easily do this be apply custom css. This can be done be using either a child theme or a custom css plugin.This is the code you need to use:
.entry-title { font-family: Montserrat, "Helvetica Neue", sans-serif; color: black; }
The font-family is the font you want to use. In this example three different fonts are listed, two for backup. Change these values to your liking.
I hope this helped you out ??