dwejikalbi
Member
Posted 4 months ago #
Can someone please help me figure out how to align these various items in the sidebar?
The subscribe buttons are directly in the sidebar.php
The tag cloud and archives are items that were inserted via widgets/appearance.
How can I get them aligned together?
Thanks!
for pure formatting problems/questions like this:
- try working with a browser inspection tool such as Firebug to investigate the formatting of the sidebar, and to find out which sttyles you need to change.
- ask at a css forum like http://csscreator.com/forum
- post at least a live link to the problem.
dwejikalbi
Member
Posted 4 months ago #
I have solved this by adding this code into my .htaccess file
Hopefully this can help someone else ~
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress