Mkhalid
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sigma] Changing the font and font size on Sigma Themefor changing the font size or color , you have to know about css.
every element has a class or an ID to represent itin the CSS file.
in our case , this class represent the style of the article.
.single .main articleso if we want to change font size , we can make something like this.
.single .main article{ font-size:14px; }you have to copy this code into your style.css file.
Forum: Themes and Templates
In reply to: [Author] centered content on any sizekindly give us your website url
Forum: Themes and Templates
In reply to: [Sigma] Changing the font and font size on Sigma Themehello
kindly provide us with your website urlForum: Themes and Templates
In reply to: Zerif lite page titles underline color change.entry-title:after
not
.entry-title a:afterForum: Themes and Templates
In reply to: [Pro Blogg] stick nav menu gets covered by headeri sent u an email
Forum: Themes and Templates
In reply to: [Pro Blogg] stick nav menu gets covered by headerthis will work fine with fixed menu but not with the top of the page.
to fix this we need to edit the jquery script file which control the menu positions.
Forum: Themes and Templates
In reply to: [Pro Blogg] stick nav menu gets covered by headernow i got the problem
try adding this code in your functions.php file
function logged_users_header(){ if(is_user_logged_in()){ ?> <style> .head-top{ top: 32px;} </style> <?php } } add_action('wp_head','logged_users_header');Forum: Themes and Templates
In reply to: [Pro Blogg] stick nav menu gets covered by headercan you provide me with the website url ?
i think you should add a ‘z-index’ to your css to handle positions issues
Forum: Fixing WordPress
In reply to: removing page titlefind “” the_title(); “” in your template file , this is responsible for showing page / post title in the page
Forum: Fixing WordPress
In reply to: Changing website addressForum: Fixing WordPress
In reply to: Footer widget disappeared and "white page" ends too soon.may be you or someone else deleted or commented “get_footer();” function from your file.
check it again and let us know.
Forum: Fixing WordPress
In reply to: let the_title(); output the title without linkas @andrew said ” the_title(); function does not output a ‘link’ .. just a plain text.
Forum: Themes and Templates
In reply to: [Hueman] Hide Dropdown menuYou can create 2 divs for the menu including the same menu
for example u can create one div has calss “logged-users-div” including menu.
and copy it with a class “not-logged-users-div” or any other classes for boththen we can do the following >
in your template page.
<?php if ( is_user_logged_in() ) { ?> <div class="logged-users-div"> <ul> <li>element</li> <li>element</li> <li>element <ul class="submenu"> <li>child element</li> <li>child element</li> <li>child element</li> <li>child element</li> </ul> </li> </ul> </div> <?php } else { ?> <div class="not-logged-users-div"> <ul> <li>element</li> <li>element</li> <li>element <ul class="submenu"> <li>child element</li> <li>child element</li> <li>child element</li> <li>child element</li> </ul> </li> </ul> </div> <?php } ?>and in your css , you can do this
.not-logged-users-div .submenu{ display:none; }or in custom window width
@media(max-width: 480px){ .not-logged-users-div .submenu{ display:none; } }solved!
i was calling the ” base_widget ” inside ” base_widget “
so it was looping and this cause nesting ..
Forum: Fixing WordPress
In reply to: Center Paypal buttonis it a ‘css’ problem ?
if u mean that so u can add style to the button class.
.button-class{ margin:auto; display:block; width: 100px // or whatever u want }