guru985
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I’ve Messed up my pageHi ccpranav
You will have to increase the width of your container, the width of your container is very little.
Forum: Fixing WordPress
In reply to: Text cutHi sholis,
Please add this code in your css file. May be it’s work.
.hometop p {
text-align: initial;
word-break: break-word;
}Forum: Fixing WordPress
In reply to: Text cutHi sholis (@sholis),
Please give me the URL of your website so that I can help you.
Forum: Fixing WordPress
In reply to: Responsive design doesn’t work on tabletHi, weingutgrimm
You can add this responsiveness property in your style.css
#pg-39-0.panel-no-style, #pg-39-0.panel-has-style > .panel-row-style {
margin: 0 !important;
}I hope this code will solve your problem.
Let me know if you have any problem.Forum: Fixing WordPress
In reply to: Removing Sticky Tab on PagesHi,
Andrew NevinsWe are aware with this thing if we modify a chaild theme style.css there will no any with theme “update” problem.
Forum: Fixing WordPress
In reply to: Removing Sticky Tab on PagesHello Aaess,
Go to your stylesheet and find this code.
.no-featured .sticky-btn {
position: fixed;
top: 47%;
z-index: 9999;
}And add display property {display: none;}.
I hope it will solve your problem. And let me know if there issue.
Thanks,Forum: Fixing WordPress
In reply to: Black space with mobile deviceHello Scabtik,
Go to your stylesheet and write this code.
.panel-row-style.panel-row-style-for-220-0 {
padding: 100px 0 0 0 !important;
}I hope it will solve your problem. And let me know if there issue.
Thanks,Forum: Fixing WordPress
In reply to: Black space with mobile deviceHello Scabtik,
Go to your stylesheet and find this code.
.site-header {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
z-index: 1000;
background-color: transparent;
padding: 20px 0;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-ms-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
}Remove this padding property {padding: 20px 0;} or you can also change in 0px in place of 20px
Like this:-
padding: 0px;I hope it will solve your problem. And let me know if there issue.
Thanks,Forum: Fixing WordPress
In reply to: Black space with mobile devicePlease suggest the your website url.
Forum: Developing with WordPress
In reply to: How to add tags in menuHi outsourcenow (@outsourcenow)
<nav class="m-nav"> <p class="text-mild-blue">Menu</p> <?php wp_nav_menu( array( 'theme_location' => 'menu-1', 'menu_id' => 'primary-menu', 'menu_class' => '', 'container' => 'ul', 'container_class'=> '' ) ); ?> </nav>
Add class in container_class like this.
'container_class'=> 'links',
I hope it work.
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button. If you do not, your helpful code is rendered unusable by the forum’s parser.]
Forum: Developing with WordPress
In reply to: How to add tags in menucan you more elaborate
Forum: Fixing WordPress
In reply to: Navigation Menu IssueHi zeeshan
Please try this code. I hope it will solve your problem.
Go your product detail page. Find ul/submenu class/you have write there inline css “display: none”. Please replace this inline-css with “display: block;”
Like this->
<ul class=”sub-menu” style=”display: block;”>
<li id=”menu-item-251″ class=”menu-item menu-item-type-custom menu-item-object-custom menu-item-251″>Dresses
<li id=”menu-item-252″ class=”menu-item menu-item-type-custom menu-item-object-custom menu-item-252″>Tops
<li id=”menu-item-253″ class=”menu-item menu-item-type-custom menu-item-object-custom menu-item-253″>ScarvesWe have correct this block. You can also replace this block of code with your code.
Thanks.
Forum: Fixing WordPress
In reply to: How to increase the width of the primary navigation bar?Hi daviddgl (@daviddgl)
You can achieve this by applying following CSS code.
Go to your css code file and increase your width.
following is the code:-.main-menu-container {
margin: 0 auto;
max-width: 100%;
position: relative;
}.menu {
width: 100%;
}I hope this will be help you.
Thanks.
Forum: Fixing WordPress
In reply to: Can’t get media query max-height to workHi Rosa Bosma
Try like this may be it will help
@media (max-height: 800px) {
property { }
}While min-height and max-height will never be used to the same extent as min-width and max-width they provide a number of design opportunities which we’re only just beginning to exploit.
Forum: Fixing WordPress
In reply to: Changing color on vertical bar of blockquoteHi driftless2286
Go to dashboard/appearance/editor and find this css
blockquote, q {
position: relative;
display: block;
font-style: italic;
border-left: 3px solid #DDAF4D;
padding: 0px 25px 0px 15px;
margin: 0 0 20px 15px;
}
There is the color code #DDAF4D; You can change color code into #FF0000 But the problem is you cant save that css permanently. You have to find this css in your wordpress theme there you have download wordpress. Go in your file for example.Go in your wordpress folder/WP-content/theme/grow and find style.css file open it find this section.
blockquote, q {
position: relative;
display: block;
font-style: italic;
border-left: 3px solid #DDAF4D;
padding: 0px 25px 0px 15px;
margin: 0 0 20px 15px;
}
and change color code #DDAF4D into #FF0000
I hope it will solve your problem.Thanks.