Posts by Fabricio Corrêa • 68 points
4 posts
-
1
votes1
answer195
viewsA: How to optimize html and css files?
Use this code in . htaccess to cache and improve performance: #Força a utilizar Cache-Control e Expires header <IfModule mod_headers.c> Header unset ETag </IfModule> FileETag None…
-
0
votes1
answer391
viewsA: box-shadow css property
Face, box-shadow opacity must be declared different. .form-control { ... -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.75); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.75); ... } or as the…
cssanswered Fabricio Corrêa 68 -
1
votes1
answer866
viewsQ: Error syntax error, Unexpected T_CONSTANT_ENCAPSED_STRING
add_filter('wp_nav_menu_items', 'add_search_form', 10, 2); function add_search_form($items, $args) { if( $args->theme_location == 'primary' ) $items .= '<li><div…
-
3
votes2
answers185
viewsA: Problems with positioning with columns in Bootstrap 3
Before anything, try to take a closer look at this link: http://getbootstrap.com/css/#grid it shows how to work with the bootstrap structure, by bootstrap itself. Next, try this structure below: ...…