Website Coding

Stuck on a line of code? Find resources and post your coding questions here.

Forum Sponsor (Advertise with us)
Reply
 
Thread Tools Display Modes
    #1 (permalink)  
Old 07-14-2009
Your Virtual Wizard's Avatar
VAF Blog Challenge Moderator
Company name: Your Virtual Wizard
 
Join Date: Sep 2008
Location: Florida-Gulf Coast
Posts: 2,168
Blog Entries: 5
Send a message via AIM to Your Virtual Wizard Send a message via Yahoo to Your Virtual Wizard Send a message via Skype™ to Your Virtual Wizard
Default Wordpress CSS Questions, I believe
Please forgive me if this does not belong in coding. I've spent some time checking this issue out and this is where I believe the changes have to be made but I am not sure.

I have a client whose wordpress themed blog needs some changes. She would like the title of the blog to be moved to the other side of the page and she would like to remove or find out the option to edit the Asides section of the blog.

I checked all widgets and sections to see if this had an easy change but I believe that the changes need to be made in the CSS stylesheet which is where I found the category for the Asides and in the header php. None of which I know how to fool with. Even then, I don't know how to edit the Asides section even if she was going to keep the feature.

The site is here

Regards,

Janine
__________________
WRITE FAB RFP PROPOSALS & land THE VA job. WinningRFP unveils soon! SignUp www.WinningRFP.com
Reply With Quote
    #2 (permalink)  
Old 07-14-2009
ChristinaVOS's Avatar
Active Member
Company name: VOSTeam/Business Darlings/PainlessWP
 
Join Date: Nov 2007
Location: Upstate NY
Posts: 886
Send a message via AIM to ChristinaVOS Send a message via Skype™ to ChristinaVOS
Default Re: Wordpress CSS Questions, I believe
I can help with the "asides" problem.
The Asides and Flicker items in the sidebar are basically placeholders until you choose a widget or two to add. Just add a widget to left_sidebar and those two will disappear.

Hopefully someone else can come up with the header info.
__________________
~Christina|BD Mag|VOSTeam
Reply With Quote
    #3 (permalink)  
Old 07-14-2009
Business-Bytes's Avatar
Resident Member
Company name: SunRise Virtual Solutions
 
Join Date: Jun 2009
Location: Iowa
Posts: 1,043
Blog Entries: 1
Send a message via Skype™ to Business-Bytes
Post Re: Wordpress CSS Questions, I believe
Originally Posted by Your Virtual Wizard View Post

I have a client whose wordpress themed blog needs some changes. She would like the title of the blog to be moved to the other side of the page and she would like to remove or find out the option to edit the Asides section of the blog.
To move the page title (and tagline under it) go to the styles.css file.

To move the page title:

Find the code I bolded (using the Edit > Find feature of your browser makes this easier to search for it):

#title h1 {
<...removed my other code.......>
float:left;
}

Change float:left; to float:right;

To move the tagline under it:

Find this line of code:

#tagline h2 {
<...removed my other code.......>
float:left;
}

Change float:left; to float:right;

ETA: Click on Update File to save your changes. Then, view the page (you might need to refresh to see your changes). The title and tagline should be on the right.

As far as the Asides area, without actually seeing her admin area, I'm not sure on that. I am thinking that that area should be directly editable without going into the css - that is if it is just the content you want to change.

HTH a bit,
__________________
Jules, SunRise Virtual Solutions - WordPress Customization & XHTML/CSS Web Sites
Reply With Quote
    #4 (permalink)  
Old 07-14-2009
Your Virtual Wizard's Avatar
VAF Blog Challenge Moderator
Company name: Your Virtual Wizard
 
Join Date: Sep 2008
Location: Florida-Gulf Coast
Posts: 2,168
Blog Entries: 5
Send a message via AIM to Your Virtual Wizard Send a message via Yahoo to Your Virtual Wizard Send a message via Skype™ to Your Virtual Wizard
Default Re: Wordpress CSS Questions, I believe
Hi Jules...Thanks for the reply. There is no #title h1 in the CSS stylesheets. I did a find several times (title, #title) and no #tagline in the style.css either. I see h1 but nothing about left or right. I also went into the header php and found title but nothing to float left or right. Any other thoughts? Thank you so much!

Christina, Thank you very much. I'll add a widget as you suggest.

Janine
__________________
WRITE FAB RFP PROPOSALS & land THE VA job. WinningRFP unveils soon! SignUp www.WinningRFP.com
Reply With Quote
    #5 (permalink)  
Old 07-14-2009
Business-Bytes's Avatar
Resident Member
Company name: SunRise Virtual Solutions
 
Join Date: Jun 2009
Location: Iowa
Posts: 1,043
Blog Entries: 1
Send a message via Skype™ to Business-Bytes
Default Re: Wordpress CSS Questions, I believe
Janine, you want to pm or email me the code from the CSS? Maybe I can spot it that way.

ETA: Hold off on that, I'll look at the code from my browser.

It looks like there is a 'relative' position set for the header area, with no positioning for the title since it is in the header. Boy, since I'm newish to WP, without changing a bunch of other CSS code, I'm stumped. You could maybe do something with this to add absolute positioning:

h1 a (line 9)
{
color: #ffffff;
text-decoration: none;
}

But this might really mess things up, since this is a link.

Sorry! Maybe someone with more experience with WP could look at the CSS and help?
__________________
Jules, SunRise Virtual Solutions - WordPress Customization & XHTML/CSS Web Sites
Reply With Quote
    #6 (permalink)  
Old 07-14-2009
Your Virtual Wizard's Avatar
VAF Blog Challenge Moderator
Company name: Your Virtual Wizard
 
Join Date: Sep 2008
Location: Florida-Gulf Coast
Posts: 2,168
Blog Entries: 5
Send a message via AIM to Your Virtual Wizard Send a message via Yahoo to Your Virtual Wizard Send a message via Skype™ to Your Virtual Wizard
Default Re: Wordpress CSS Questions, I believe
Thank you, Jules! I appreciate looking that up for me. I always think of these tasks as ways to learn something new. If I get the solution, I'll post it here.

Janine
__________________
WRITE FAB RFP PROPOSALS & land THE VA job. WinningRFP unveils soon! SignUp www.WinningRFP.com
Reply With Quote
    #7 (permalink)  
Old 07-14-2009
Business-Bytes's Avatar
Resident Member
Company name: SunRise Virtual Solutions
 
Join Date: Jun 2009
Location: Iowa
Posts: 1,043
Blog Entries: 1
Send a message via Skype™ to Business-Bytes
Default Re: Wordpress CSS Questions, I believe
You could try adding to this to the above code (you can always remove it if it messes things up ):

position: absolute;
top: 50px; /*or however many px it takes to get it where ya want it this sets how far from the top of the page*/
left: 200px; /*or however many px it takes to get it where ya want it - this moves it to the FROM the left to the right*/

The same could be done for the tagline, but with different top/left px amounts.

Fun, ain't it?

Yes, if you find a solution, please post it.
__________________
Jules, SunRise Virtual Solutions - WordPress Customization & XHTML/CSS Web Sites
Reply With Quote
    #8 (permalink)  
Old 07-14-2009
Jodie-OutSourcingPro
Guest
 
Posts: n/a
Default Re: Wordpress CSS Questions, I believe
I can move that over to the right but I can't explain how to do so succinctly without confusing you since I don't know precisely what the code in your header looks like.

If you are willing to PM me the log in (or give me a temp one) I can jump in there tomorrow and fix this for you.

Basically I would either add a line of code to the style sheet forcing the alignment change (where depends on your code) or go into the header and add do it there.
Reply With Quote
    #9 (permalink)  
Old 07-14-2009
virtual writing's Avatar
Resident Member
Company name: Virtual Writing and Communications
Latest blog post: Triberr lament
 
Join Date: Nov 2007
Location: Alamance County, NC
Posts: 1,410
Blog Entries: 1
Default Re: Wordpress CSS Questions, I believe
Jodie may have the answer for you, Janine. But in the meantime, it's important for clients to understand that a Theme is a set design, and often it's not easy to hack it. That's why you select the design in the first place - because it looks like what you want, with the title on the left or whatever. So if the client's unhappy with the design, easiest thing to do may be to send 'em to theme listings and let 'em chose a new one.
__________________
Mary H. Ruth/Virtual Writing & Communications
http://www.writingVA.com
Reply With Quote
    #10 (permalink)  
Old 07-14-2009
Jodie-OutSourcingPro
Guest
 
Posts: n/a
Default Re: Wordpress CSS Questions, I believe
Actually I specialize in customizing a theme to suit the client. I can it look totally different that what you start with.

I mostly use Studio Press theme's and customize them to suit. They are easy to work with and have a lot of great built in functionality.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
What questions do you ask new clients during your consultation, and what are their questions? tg180078 New Client Best Practices 79 12-02-2011 12:03 AM
Consulting Questions DennisW Virtual Bookkeeper Forum 3 04-08-2009 10:05 PM
Questions regarding EIN/taxes HandyVOA Small Business Taxes 4 12-30-2008 07:59 PM
Some questions about PR Girl Friday Press Releases 5 10-01-2007 11:08 AM


All times are GMT -4. The time now is 11:20 AM.

International Virtual Assistants Association
Project Management for Virtual Assistants
Work from Home | Become A Virtual Assistant
Virtual Assistant Directory
Affordable Logo Design
Virtual Assistant Contracts
Virtual Assistant Forums Advertising

© Virtual Assistant Forums 2012
All content and images are protected under copyright law and may not be reproduced in any way without express written consent.