shemapatrick
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Gazette] Center Menuhi pedrolaia
you can also try this and seeRemove float: left; style and add this style:
ul#top-menu {
margin: 0 auto;
width: 425px; /*the menu width*/
}Forum: Themes and Templates
In reply to: [Gazette] Center Menuhello pedrolaia!
try this following steps:Give #top-menu an explicit width width: 450px and margin: 23px auto 0 auto;
Get rid of the float: left.
Alternatively, make the li elements inline blocks display: inline-block and use text-align: center on their parent.
Forum: Themes and Templates
In reply to: [Hueman] Add TAG to the menuYou are welcome.
Forum: Themes and Templates
In reply to: [Oria] Remove loading barHi there,
yes ,it’s possible to remove load barYou could hide the loading bar with some custom CSS.
To add custom CSS: Firstly activate a custom CSS plugin or, if you have Jetpack installed, activate its custom CSS module.
Enter the following snippet in the plugin’s CSS editor:
.pace {
display: none;
}Let me know how that goes.
Forum: Themes and Templates
In reply to: [Hueman] Add TAG to the menuhey bstorquato,
the problem is not with the last update.
you can use this following steps to solve that issue
1.go to WordPress and click ‘Appearance’>>>>’Menus’
by default you can only add pages,links or categories on your menu
2.the option to add TAGS is hidden away so
-click ‘Screen options’, and check the boxes for pots and Tags and thick in the box of Tags
-after that you can add Tags to the Menu
-check the boxes in front of the items you want to add , and click ‘Add Menu’
-click ‘Save Menu’
once you refresh the page, you will see the posts have been added to the MenuForum: Themes and Templates
In reply to: [Sydney] Images not uploadingwelcome and keep it up.
Forum: Themes and Templates
In reply to: [Sydney] Images not uploadinghey coragemdeser, you can also try this:
Add one of these codes in .htaccess:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>or
# Exclude the file upload and WP CRON scripts from authentication
<FilesMatch “(async-upload\.php|wp-cron\.php|xmlrpc\.php)$”>
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>or
AddType x-mapp-php5 .php (at the very top of your .htaccess file)
Forum: Themes and Templates
In reply to: [Sydney] Images not uploadinghello coragemdeser!!
Sometimes, the error can appear just once, for a particular image, but if it persists, try the following solutions:
1. Decrease the image’s size. Don’t add a 2000 x 1500 image, for example. If your post content area is 700px wide, don’t add an image larger than that.
2. Change the image’s extension from .png to .jpg, or vice versa, then upload it again.
3. If the problem appears after installing a plugin, deactivate it and try it again. Some plugins can trigger the error.